in VueJS by

How to create an instance of Vue.js?

1 Answer

0 votes
by

Every Vue application starts by creating a new Vue instance with the Vue function:

var vm = new Vue({
  // options
})
...