[Vuejs]-Vue code not updating in my Django/Vue Project

0👍

Try to do

    const app = new Vue({
        render: (h) => h(Demo)
    });
    app.$mount('#app')

and change

    <div id="app">
        <demo></demo>
    </div>

to <div id="app"></div>

Leave a comment