Answer the question
In order to leave comments, you need to log in
How to instantiate Vue?
HTML
<body>
<div id="app">
<div>{{ message }}</div>
<div id="children">{{ msg }}</div>
</div>
</body>
new Vue({
el: '#app',
data: {
message: 'Hello!'
}
});
new Vue({
el: '#children',
data: {
msg: 'Hi!'
}
});
Answer the question
In order to leave comments, you need to log in
1 copy per 1 page.
new Vue({
el: '#app',
data: {
message: 'Hello!',
msg: 'Hi!'
}
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question