The VueJS Instance
Learn more about the VueJS Instance
by John Doe
HTML
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<div id="app2">
<hello></hello>
<span :text="lorem"></span>
<h2>{{lorem}}</h2>
</div>
JavaScript
Vue.component('hello', {
template: '<h3>hello</h3>'
});
var vm2 = new Vue({
el: '#app2',
data: {
lorem: 'ipsum'
}
});