0 votes
in VueJS by
retagged by
Which of the following syntax is correct for creating a Vue.js instance?

a) var text = new object ({//options})

b) var text = new class ({//options})

c) var text = new text ({//options})

d) var text = new Vue({// options })

1 Answer

0 votes
by

d) var text = new Vue({// options }) is correct for creating a Vue.js instance

Related questions

0 votes
asked Apr 13, 2022 in VueJS by john ganales
...