vue django delimiters

In Django, to change the delimiters for Vue templates, follow these steps:

  1. In your Vue component file, add the delimiters option to change the default delimiters:
new Vue({
  delimiters: ['${', '}'],
  // other options and code
});
  1. In your Django template, use the custom delimiters for the Vue component:
{% verbatim %}
  <div>${ variable }</div>
{% endverbatim %}