[Vuejs]-Vue.JS Applications Throws Errors JS Expected

0👍

Your new Vue assignment is inside of your export default block. Move your assignment out of it. Did you forget to close it with a }?

export default {
        name: 'app',
        components: {
            Home
        }

// THIS IS INSIDE THE export default block...
let catApp = new Vue({

Leave a comment