手记

Vue 相关知识点 第1部分

组件
  • Vue.component('name',{template:'xxx'}),传入两个参数,组件名和一个模板对象
    Vue.component('show',{template:'<h1>标题组件</h1>'})
  • 全局定义,局部注册
    const Child = {template:'<h1>标题组件</h1>'}
    new Vue({
    ...
    ,
    components:{
        'show':Child
    }
    })

    通过components属性注册

1人推荐
随时随地看视频
慕课网APP