0 votes
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
})

Related questions

0 votes
asked Oct 7, 2019 in VueJS by Tate
0 votes
asked Jan 9, 2020 in VueJS by GeorgeBell
...