in VueJS by (5.2k points)

How to create an instance of Vue.js?

1 Answer

0 votes
by (5.2k points)

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

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

Related questions

0 votes
0 votes
asked Oct 7, 2019 in VueJS by Tate (883 points)
0 votes
0 votes
asked Jan 9, 2020 in VueJS by GeorgeBell (5.2k points)
0 votes
0 votes
asked Jan 9, 2020 in VueJS by GeorgeBell (5.2k points)
...