0 votes
in VueJS by
How to initialize the root instance in Vue JS (using the CDN method)?

a)var app = Vue new({…});

b)var app = Vue.new({…});

c)var app = Vue({…});

d)var app = new Vue({…});

1 Answer

0 votes
by

d)var app = new Vue({…}); is used to initialize the root instance in Vue JS (using the CDN method)

Related questions

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