Answer the question
In order to leave comments, you need to log in
How to use vue js + django?
Good afternoon!
Can't launch vue with janga
in header declared
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<div id="app-3">
<span v-if="seen">Сейчас меня видно</span>
</div>
var app3 = new Vue({
el: '#app-3',
data: {
seen: true
}
})
Answer the question
In order to leave comments, you need to log in
data is always a function that returns an object.
var app3 = new Vue({
el: '#app-3',
data() {
return {
seen: true
}
}
})
Take a look at this tutorial, maybe it will help you understand some points.
https://github.com/michaelbukachi/django-vuejs-tut...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question