首页 > 其他分享 >组件化

组件化

时间:2022-11-24 14:02:36浏览次数:35  
标签:Vue const cpn extend component 组件

  • 创建组件构造器对象
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

相关文章