0👍
In your vue instance you are passing #widget1 to the
el` option like this
var vm = new Vue({
el: '#widget',
render:h=>h(widget)
});
//}
But in your html you have the element with id app
so pass #app
to el
var vm = new Vue({
el: '#app',
render:h=>h(widget)
});
//}
Source:stackexchange.com