Hello I have existing web app written in django and I want to add some vue js feautures. I don't want to have all the pain with webpack, so I can stick to including vue.js as an external script like this:
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script>
as sugested here: https://vuejs.org/v2/guide/installation.html#ad
Also I have on my page this html:
<div id="app">
just an app
{{ message }}
</div>
And the following inline script:
<script type="text/javascript" >
var app = new Vue({
el: '#app',
data: {
message: 'Hello Vue!'
}
})
</script>
But there is no message "Hello vue" on my page. As you can see on the printscreen So what do I do?