Vue.extend( options )
参数:
{Object} options
在你的main.js中书写
var Profile = Vue.extend({
template: '<p>{{firstName}} {{lastName}} aka {{alias}}</p>',
data: function () {
return {
firstName: 'Walter',
lastName: 'White',
alias: 'Heisenberg'
}
}
})
在你的页面
<div id="mount-point"></div>
new Profile().$mount('#mount-point')