I\'m trying to make django & Vue work together even though they share the same {{ X }} template syntax.
I know that from django 1.5 we can use the {% verb
You can change Vue's interpolation delimiters to whatever you want.
var sessions = new Vue({
el: '#sessions',
delimiters: ['${', '}'],
data: {
message: 'Hello Vue!'
}
})
That way you can use whatever your framework needs.
Edit
It turned out in this case, @Costantin had more than one div#sessions on the page.