组件:分三步

创建组件:

var myComponent = Vue.extend({
template:'<div>This is my first component</div>'
});

注册组件:

Vue.component('firstcomponent',firstcomponent);

使用组件

<firstcomponent></firstcomponent>

学到的知识点:

  1. html自定义组件不区分大小写

相关文章:

  • 2021-11-07
  • 2022-03-03
  • 2022-12-23
  • 2021-10-13
  • 2021-09-29
  • 2022-12-23
猜你喜欢
  • 2021-11-29
  • 2021-10-17
  • 2021-12-24
相关资源
相似解决方案