Vue组件的几种声明方式:Vue.extend、语法糖、script的type=“text/x-template“、template标签

本文介绍了Vue.js中创建组件的四种方法:1) 使用Vue.extend构造器;2) 直接在Vue实例中定义局部组件;3) 利用script标签的type='text/x-template'创建组件模板;4) 使用template标签分离组件模板。每种方式都在Vue实例中注册并全局使用了组件。
摘要由CSDN通过智能技术生成

1、Vue.extend构造器写法

// 构造器 声明
const cpn2 = Vue.extend({
  template: `
    <h2>这是一个组件</h2>
  `
});

// vue实例中挂载注册为局部组件
components: {
  cpn2
}

// 全局组件
Vue.component('cpn2', cpn2);


// HTML代码中使用
<cpn2></cpn2>

 2. 语法糖写法

// vue实例中挂载注册为局部组件
components: {
  cpn2: {
    template: `
      <h2>这是一个组件</h2>
    `
  }
}

// 全局组件
Vue.component('cpn2', {
  template: `
    <h2>这是一个组件</h2>
  `
});


// HTML代码中使用
<cpn2></cpn2>

3. script的type="text/x-template",组件模板的抽离写法

<script type="text/x-template" id="cpn">
  <div>这是一个组件</div>
</script>

// vue实例中挂载注册为局部组件
components: {
  cpn: {
    template: '#cpn'
  }
}

// 全局组件
Vue.component('cpn', {
  template: '#cpn'
});


// HTML代码中使用
<cpn></cpn>

4. template标签,组件模板的抽离写法

<template id="cpn">
  <h2>这是一个组件</h2>
</template>

// vue实例中挂载注册为局部组件
components: {
  cpn: {
    template: '#cpn'
  }
}

// 全局组件
Vue.component('cpn', {
  template: '#cpn'
});


// HTML代码中使用
<cpn></cpn>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值