Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
How to initialize the root instance in Vue JS (using the CDN method)?
Home
VueJS
How to initialize the root instance in Vue JS (using the CDN method)?
0
votes
asked
Mar 6, 2022
in
VueJS
by
sharadyadav1986
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({…});
vue-js
cdn-method
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Mar 6, 2022
by
sharadyadav1986
d)var app = new Vue({…}); is used
to initialize the root instance in Vue JS (using the CDN method)
...