- 创建组件构造器对象
const cpnConstructor = Vue.extend({
template: `
<div></div>
`
})
- 注册组件
Vue.component('my-cpn', cpnComponent);
- 使用组件
<my-cpn></my-cpn>
标签:Vue,const,cpn,extend,component,组件
From: https://www.cnblogs.com/n9c9/p/16921629.html