[Vuejs]-I get unexpected token while doing gulp watch

0👍

It means there is a syntax error in Posts.vue. Remove the colon in data : (){

data () {
    return{
        msg : 'Hello'
    }
}

Leave a comment