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>' })
"htmlcode">
<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>
"htmlcode">
<!-- 在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': { /* ... */ } }
"htmlcode">
<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属性
"htmlcode">
<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>
"htmlcode">
<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>
"htmlcode">
<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 对象来解决这个问题:"htmlcode">
<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 都有它自己内部的状态了
"htmlcode">
<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组件的使用方法请点击下面的相关链接
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。
更新日志
- 【雨果唱片】中国管弦乐《鹿回头》WAV
- APM亚流新世代《一起冒险》[FLAC/分轨][106.77MB]
- 崔健《飞狗》律冻文化[WAV+CUE][1.1G]
- 罗志祥《舞状元 (Explicit)》[320K/MP3][66.77MB]
- 尤雅.1997-幽雅精粹2CD【南方】【WAV+CUE】
- 张惠妹.2007-STAR(引进版)【EMI百代】【WAV+CUE】
- 群星.2008-LOVE情歌集VOL.8【正东】【WAV+CUE】
- 罗志祥《舞状元 (Explicit)》[FLAC/分轨][360.76MB]
- Tank《我不伟大,至少我能改变我。》[320K/MP3][160.41MB]
- Tank《我不伟大,至少我能改变我。》[FLAC/分轨][236.89MB]
- CD圣经推荐-夏韶声《谙2》SACD-ISO
- 钟镇涛-《百分百钟镇涛》首批限量版SACD-ISO
- 群星《继续微笑致敬许冠杰》[低速原抓WAV+CUE]
- 潘秀琼.2003-国语难忘金曲珍藏集【皇星全音】【WAV+CUE】
- 林东松.1997-2039玫瑰事件【宝丽金】【WAV+CUE】