05自定义组件的编写调用

先引入再注册,即可以使用自定义组件

<template lang="html">
  <div id="app">
    <header></header>
    <div class="tab">
      I am tab//导航区块
    </div>
    <div class="content">
      I am content//内容区块
    </div>
  </div>

</template>

<script type="text/ecmascript-6">
import header from './components/header.vue';//先引入
export default {
  components: {//在注册
    //header:herder
    header //es6支持对象的简写
  }
}
</script>

<style lang="stylus" rel='stylesheet/stylus'>
</style>

header 组件

<template lang="html">

    <div class="header">
      I am header//头区块
    </div>

  </div>

</template>

<script type="text/ecmascript-6">
export default {

}
</script>

<style lang="stylus" rel='stylesheet/stylus'>
</style>

然而此时还会报错,原因是用了html5中的关键字header,改为v-header就ok了
<template lang="html">
  <div id="app">
    <v-header></v-header>
    <div class="tab">
      I am tab//导航区块
    </div>
    <div class="content">
      I am content//内容区块
    </div>
  </div>

</template>

<script type="text/ecmascript-6">
import header from './components/header.vue';//先引入
export default {
  components: {//在注册
    //header:herder
    'v-header':header 
 }
}
</script>

<style lang="stylus" rel='stylesheet/stylus'>
</style>

总结:自定义组件最好以v-开头,这样既容易区分,又不会报错!

转载于:https://www.cnblogs.com/xiongwei2017/p/6643473.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值