Vue.component('my-component', { template: '<div>{{ msg }}</div>', data: function() { return { msg: '组件内容' } } }); var app = new Vue({ el: '#app' });
<div id="app"> <my-component></my-component> </div>