Vue组件基础用法详解


Posted in Javascript onFebruary 05, 2020

Vue组件概述

组件(Component)是Vue.js最强大的功能之一。组件可以扩展HTML元素,封装可重用的代码。根据项目需求,抽象出一些组件,每个组件里包含了展现、功能和样式。每个页面,根据自己所需,使用不同的组件来拼接页面。这种开发模式使前端页面易于扩展,且灵活性高,而且组件之间也实现了解耦。

在 Vue 里,一个组件本质上是一个拥有预定义选项的一个 Vue 实例

组件是一个自定义元素或称为一个模块,包括所需的模板、逻辑和样式。在HTML模板中,组件以一个自定义标签的形式存在,起到占位符的功能。通过Vue.js的声明式渲染后,占位符将会被替换为实际的内容

下面是一个最简单的模块示例

<div id="app">
  <xiaohuochai></xiaohuochai>
</div>

Vue注册组件

组件注册包括全局注册和局部注册两种

全局注册

要注册一个全局组件,可以使用 Vue.component(tagName, options)

Vue.component('my-component', {
 // 选项
})

组件在注册之后,便可以在父实例的模块中以自定义元素 <my-component></my-component> 的形式使用

[注意]要确保在初始化根实例之前注册了组件

<div id="example">
 <my-component></my-component>
</div>
<script>
// 注册
Vue.component('my-component', {
 template: '<div>A custom component!</div>'
})
// 创建根实例
new Vue({
 el: '#example'
})
</script>

局部注册

通过使用组件实例选项components注册,可以使组件仅在另一个实例/组件的作用域中可用

<div id="example">
 <my-component></my-component>
</div>
<script>
// 注册
var Child = {
 template: '<div>A custom component!</div>'
};
// 创建根实例
new Vue({
 el: '#example',
  components: {
  // <my-component> 将只在父模板可用
  'my-component': Child
 } 
})
</script>

组件树

使用组件实例选项components注册,可以实现组件树的效果

<div id="example">
 <my-component></my-component>
</div>
<script>
// 注册
var headerTitle = {
  template: '<p>我是标题</p>',
};
var headerContent = {
  template: '<p>我是内容</p>',
};
var header = {
 template: `
   <div class="hd">
      <header-content></header-content>
      <header-title></header-title>
   </div>
 `,
  components: {
  'header-content': headerContent,
  'header-title': headerTitle
 }  
};
// 创建实例
new Vue({
 el: '#example',
  components: {
  'my-component': header
 } 
})
</script>

对于大型应用来说,有必要将整个应用程序划分为组件,以使开发可管理。一般地组件应用模板如下所示

<div id="app">
 <app-nav></app-nav>
 <app-view>
  <app-sidebar></app-sidebar>
  <app-content></app-content>
 </app-view>
</div>

v-once

尽管在 Vue 中渲染 HTML 很快,不过当组件中包含大量静态内容时,可以考虑使用 v-once 将渲染结果缓存起来

Vue.component('my-component', {
 template: '<div v-once>hello world!...</div>'
})

 

Vue组件的模板分离

在组件注册中,使用template选项中拼接HTML元素比较麻烦,这也导致了HTML和JS的高耦合性。庆幸的是,Vue.js提供了两种方式将定义在JS中的HTML模板分离出来

script

在script标签里使用 text/x-template 类型,并且指定一个 id

<script type="text/x-template" id="hello-world-template">
 <p>Hello hello hello</p>
</script>
Vue.component('hello-world', {
 template: '#hello-world-template'
})

上面的代码等价于

Vue.component('hello-world', {
 template: '<p>Hello hello hello</p>'
})

下面是一个简单示例

<div id="example">
 <my-component></my-component>
</div>
<script type="text/x-template" id="hello-world-template">
 <div>hello world!</div> 
</script>
<script>
Vue.component('my-component', {
 template: '#hello-world-template'
})
new Vue({
 el: '#example'
})
</script>

template

如果使用<template>标签,则不需要指定type属性

<div id="example">
 <my-component></my-component>
</div>
<template id="hello-world-template">
 <div>hello world!</div> 
</template>
<script>
// 注册
Vue.component('my-component', {
 template: '#hello-world-template'
})
// 创建根实例
new Vue({
 el: '#example'
})
</script>

 

Vue组件的命名约定

对于组件的命名,W3C规范是字母小写且包含一个中划线(-),虽然Vue没有强制要求,但最好遵循规范  

<!-- 在HTML模版中始终使用 kebab-case -->
<kebab-cased-component></kebab-cased-component>
<camel-cased-component></camel-cased-component>
<pascal-cased-component></pascal-cased-component>

当注册组件时,使用中划线、小驼峰、大驼峰这三种任意一种都可以

// 在组件定义中
components: {
 // 使用 中划线 形式注册
 'kebab-cased-component': { /* ... */ },
 // 使用 小驼峰 形式注册
 'camelCasedComponent': { /* ... */ },
 // 使用 大驼峰 形式注册
 'PascalCasedComponent': { /* ... */ }
}

 

Vue组件嵌套限制

并不是所有的元素都可以嵌套模板,因为要受到HTML元素嵌套规则的限制,尤其像<ul>,<ol>,<table>,<select> 限制了能被它包裹的元素,而一些像 <option> 这样的元素只能出现在某些其它元素内部

[注意]关于HTML标签的详细嵌套规则移步至此

在自定义组件中使用这些受限制的元素时会导致一些问题,例如

<table id="example">
 <my-row>...</my-row>
</table>

自定义组件 <my-row> 被认为是无效的内容,因此在渲染的时候会导致错误

<script>
// 注册
var header = {
 template: '<div class="hd">我是标题</div>' 
};
// 创建实例
new Vue({
 el: '#example',
  components: {
  'my-row': header
 } 
})
</script>

is属性

 变通的方案是使用特殊的 is 属性

<table id="example">
 <tr is="my-row"></tr>
</table>
<script>
// 注册
var header = {
 template: '<div class="hd">我是标题</div>'
};
// 创建实例
new Vue({
 el: '#example',
  components: {
  'my-row': header
 } 
})
</script>

 

Vue组件的根元素

Vue强制要求每一个Vue实例(组件本质上就是一个Vue实例)需要有一个根元素

如下所示,则会报错

<div id="example">
 <my-component></my-component>
</div>
<script>
// 注册
Vue.component('my-component', {
 template: `
  <p>第一段</p>
  <p>第二段</p>
 `,
})
// 创建根实例
new Vue({
 el: '#example'
})
</script>

需要改写成如下所示

<script>
// 注册
Vue.component('my-component', {
 template: `
  <div>
   <p>第一段</p>
   <p>第二段</p>
  </div> 
 `,
})
// 创建根实例
new Vue({
 el: '#example'
})
</script>

 

Vue组件数据传递

一般地,我们在Vue实例对象或Vue组件对象中,我们通过data来传递数据

<div id="example">
 <my-component></my-component>
 <my-component></my-component>
 <my-component></my-component>
</div>
<script>
// 注册
Vue.component('my-component', {
 template: '<div>{{message}}</div>',
 data:{
   message: 'hello'
 }
})
// 创建根实例
new Vue({
 el: '#example'
})
</script>

运行上面的代码,会使Vue停止执行,并在控制台发出错误提示,告诉你在组件中 data 必须是一个函数

可以用如下方式来绕开Vue的错误提示

<script>
// 注册
var data = {counter: 0}
Vue.component('my-component', {
 template: '<button v-on:click="counter += 1">{{ counter }}</button>',
 data:function(){
   return data;
 }
})
// 创建根实例
new Vue({
 el: '#example'
})
</script>

由于这三个组件共享了同一个 data,因此增加一个 counter 会影响所有组件

当一个组件被定义, data 需要声明为返回一个初始数据对象的函数,因为组件可能被用来创建多个实例。如果 data 仍然是一个纯粹的对象,则所有的实例将共享引用同一个数据对象。通过提供 data 函数,每次创建一个新实例后,能够调用 data 函数,从而返回初始数据的一个全新副本数据对象

因此,可以通过为每个组件返回全新的 data 对象来解决这个问题: 

<script>
// 注册
Vue.component('my-component', {
 template: '<button v-on:click="counter += 1">{{ counter }}</button>',
 data:function(){
   return {counter: 0};
 }
})
// 创建根实例
new Vue({
 el: '#example'
})
</script>

现在每个 counter 都有它自己内部的状态了

 

Vue组件原生事件

有时候,可能想在某个组件的根元素上监听一个原生事件。直接使用v-bind指令是不生效的

<div id="example">
 <my-component @click="doTheThing"></my-component>
 <p>{{message}}</p>
</div>
<script>
Vue.component('my-component', {
 template: '<button>按钮</button>',
})
new Vue({
 el: '#example',
 data:{
  message:0
 },
 methods:{
  doTheThing(){
   this.message++;
  }
 }
})
</script>

可以使用 .native 修饰 v-on指令即可

<div id="example">
 <my-component @click.native="doTheThing"></my-component>
 <p>{{message}}</p>
</div>
<script>
Vue.component('my-component', {
 template: '<button>按钮</button>',
})
new Vue({
 el: '#example',
 data:{
  message:0
 },
 methods:{
  doTheThing(){
   this.message++;
  }
 }
})

更多关于Vue组件的使用方法请点击下面的相关链接

Javascript 相关文章推荐
借用Google的Javascript API Loader来加速你的网站
Jan 28 Javascript
js中的preventDefault与stopPropagation详解
Jan 29 Javascript
js操作数组函数实例小结
Dec 10 Javascript
jQuery中设置form表单中action值的实现方法
May 25 Javascript
jquery 动态增加,减少input表单的简单方法(必看)
Oct 12 Javascript
Javascript 创建类并动态添加属性及方法的简单实现
Oct 20 Javascript
BootStrap Validator 版本差异问题导致的submitHandler失效问题的解决方法
Dec 01 Javascript
jquery 标签 隔若干行加空白或者加虚线的方法
Dec 07 Javascript
利用forever和pm2部署node.js项目过程
May 10 Javascript
vue+element实现表单校验功能
May 20 Javascript
VueJS 取得 URL 参数值的方法
Jul 19 Javascript
JS实现表单中点击小眼睛显示隐藏密码框中的密码
Apr 13 Javascript
vue组件传值的实现方式小结【三种方式】
Feb 05 #Javascript
vue路由传参的基本实现方式小结【三种方式】
Feb 05 #Javascript
Vuex的API文档说明详解
Feb 05 #Javascript
如何实现iframe父子传参通信
Feb 05 #Javascript
JavaScript对象原型链原理详解
Feb 05 #Javascript
基于Vue的侧边目录组件的实现
Feb 05 #Javascript
Js视频播放器插件Video.js使用方法详解
Feb 04 #Javascript
You might like
咖啡的传说和历史
2021/03/03 新手入门
php 无限极分类
2008/03/27 PHP
解析数组非数字键名引号的必要性
2013/08/09 PHP
php生成随机颜色的方法
2014/11/13 PHP
php程序员应具有的7种能力小结
2014/11/27 PHP
php简单统计在线人数的方法
2016/05/10 PHP
PHP命令空间namespace及use的用法小结
2017/11/27 PHP
CentOS7.0下安装PHP5.6.30服务的教程详解
2018/09/29 PHP
Yaf框架封装的MySQL数据库操作示例
2019/03/06 PHP
JavaScript类型转换方法及需要注意的问题小结(挺全面)
2010/11/11 Javascript
javascript中[]和{}对象使用介绍
2013/03/20 Javascript
window resize和scroll事件的基本优化思路
2014/04/29 Javascript
动态加载jQuery的两种方法实例分析
2015/07/17 Javascript
详解Node项目部署到云服务器上
2017/07/12 Javascript
浅谈vue父子组件怎么传值
2018/07/21 Javascript
vue2.0 路由模式mode=&quot;history&quot;的作用
2018/10/18 Javascript
怎么使用javascript深度拷贝一个数组
2019/06/06 Javascript
[01:18:36]LGD vs VP Supermajor 败者组决赛 BO3 第一场 6.10
2018/07/04 DOTA
Python Web开发模板引擎优缺点总结
2014/05/06 Python
Python学习之asyncore模块用法实例教程
2014/09/29 Python
代码实例讲解python3的编码问题
2019/07/08 Python
Python 实现输入任意多个数,并计算其平均值的例子
2019/07/16 Python
Python二元赋值实用技巧解析
2019/10/25 Python
pytorch 常用线性函数详解
2020/01/15 Python
html5摇一摇代码优化包括DeviceMotionEvent等等
2014/09/01 HTML / CSS
美国零售商店:Blue&Cream
2017/04/07 全球购物
药学专业个人自我评价
2013/11/11 职场文书
行政办公员自我评价分享
2013/12/14 职场文书
职业生涯规划怎么写
2013/12/29 职场文书
秋季运动会广播稿大全
2014/02/17 职场文书
公司合作意向书
2014/04/01 职场文书
作文评语大全
2014/04/23 职场文书
2016年父亲节寄语
2015/12/04 职场文书
2016年第十四个公民道德宣传日活动总
2016/04/01 职场文书
七年级作文之下雨天
2019/12/23 职场文书
python微信智能AI机器人实现多种支付方式
2022/04/12 Python