当前位置: 移动技术网 > IT编程>脚本编程>vue.js > 强大Vue.js组件浅析

强大Vue.js组件浅析

2018年05月10日  | 移动技术网IT编程  | 我要评论

什么是组件:组件是vue.js最强大的功能之一。组件可以扩展html元素,封装可重用的代码。在较高层面上,组件是自定义的元素,vue.js的编译器为它添加特殊功能。在有些情况下,组件也可以是原生html元素的形式,以is特性扩展。

如何注册组件?

需要使用vue.extend方法创建一个组件,然后使用vue.component方法注册组件。vue.extend方法格式如下: 

var mycomponent = vue.extend({
 // 选项...后面再介绍
}) 

如果想要其他地方使用这个创建的组件,还得个组件命个名: 

vue.component('my-component', mycomponent) 

命名之后即可在html标签中使用这个组件名称,像使用dom元素一样。下面来看看一个完整的组件注册和使用例子。

html代码: 

<div id="example">
 <my-component></my-component>
</div> 

js代码: 

// 定义
var mycomponent = vue.extend({
 template: '<div>a custom component!</div>'
})

// 注册
vue.component('my-component', mycomponent)

// 创建根实例
new vue({
 el: '#example'
})

输出结果:

 <div id="example">
 <div>a custom component!</div>
</div 

嵌套组件
组件本身也可以包含组件,下面的parent组件就包含了一个命名为child-component组件,但这个组件只能被parent组件使用: 

var child = vue.extend({
 template: '<div>a custom component!</div>'
});
var parent = vue.extend({

 template: '<div>parent component: <child-component></child-component></div>',
 components: {
 'child-component': child
 }
});
vue.component("parent-component", parent);

上面的定义过程比较繁琐,也可以不用每次都调用vue.component和vue.extend方法: 

// 在一个步骤中扩展与注册
vue.component('my-component', {
template: '<div>a custom component!</div>'
})

// 局部注册也可以这么做
var parent = vue.extend({
 components: {
 'my-component': {
  template: '<div>a custom component!</div>'
 }
 }
})

动态组件

多个组件可以使用同一个挂载点,然后动态的在他们之间切换。使用保留的<component>元素,动态地绑定到它的is特性。下面的列子在同一个vue实例下挂了home、posts、archive三个组件,通过特性currentview动态切换组件显示。

html代码: 

<div id="dynamic">
 <button id="home">home</button>
 <button id="posts">posts</button>
 <button id="archive">archive</button>
 <br>
 <component :is="currentview"></component>
</div>

js代码: 

var vue = new vue({
 el:"#dynamic",
 data: {
 currentview: "home"
 },
 components: {
 home:{
  template: "home"
 },
 posts: {
  template: "posts"
 },
 archive: {
  template: "archive"
 }
 }
});
document.getelementbyid("home").onclick = function(){
vue.currentview = "home";
};
document.getelementbyid("posts").onclick = function(){
vue.currentview = "posts";
};
document.getelementbyid("archive").onclick = function(){
vue.currentview = "archive";
};

组件和v-for 
<my-component v-for="item in items"></my-component> 

不能传递数据给组件,因为组件的作用域是独立的。为了传递数据给组件,应当使用props: 

<my-component
v-for="item in items"
:item="item"
:index="$index">
</my-component>

不自动把 item 注入组件的原因是这会导致组件跟当前 v-for 紧密耦合。显式声明数据来自哪里可以让组件复用在其它地方。

 深入响应式原理

在组件绑定数据时,如何绑定才能够有效,并且可动态修改、添加属性?看看下面的原理介绍。

如何追踪变化:把一个不同对象传给vue实例作为data的选项,vue.js将遍历它的属性,用object.defineproperty将它转换为getter/setter。这是es5特性,所有vue.js不支持ie8或更低版本。

模板中每个指令/数据绑定都有一个对应的watcher对象,在计算过程中它把属性记录为依赖。之后当依赖的setter被调用时 ,会触发watcher重新计算。流程如下所示: 


变化检测问题:vue.js不能检测到对象属性的添加或删除,属性必须在data上才能让vue.js转换它为getter/setter模式,才能有响应。例如: 

var data = { a: 1 };
var vm = new vue({
data: data
});
// `vm.a` 和 `data.a` 现在是响应的
vm.b = 2
// `vm.b` 不是响应的
data.b = 2
// `data.b` 不是响应的

不过,也有办法在实例创建后添加属性并且让它是相应的。可以使用set(key,value)实例方法: 

vm. set('b', 2)
// `vm.b` 和 `data.b` 现在是响应的 

对于普通对象可以使用全局方法:vue.set(object, key, value):
vue.set(data, 'c', 3)
// `vm.c` 和 `data.c` 现在是响应的 

初始化数据:尽管vue.js提供动态的添加相应属性,还是推荐在data对象上声明所有的相应属性。

不这么做: 

var vm = new vue({
 template: '<div>{{msg}}</div>'
})
// 然后添加 `msg`
vm.$set('msg', 'hello!')

应该这么做: 

var vm = new vue({
 data: {
 // 以一个空值声明 `msg`
 msg: ''
 },
 template: '<div>{{msg}}</div>'
})
// 然后设置 `msg`
vm.msg = 'hello!'

 

组件完整案例
下面介绍的例子实现了模态窗口功能,代码也比较简单。

html代码:

<!-- 实现script定义一个模板 -->
<script type="x/template" id="modal-template">
 <!--模板是否显示通过v-show="show"来设置, transition设置动画效果-->
 <div class="modal-mask" v-show="show" transition="modal">
 <div class="modal-wrapper">
  <div class="modal-container">
  <div class="modal-header">
   <!--slot 相当于header占位符-->
   <slot name="header">
   default header
   </slot>
  </div>
  <div class="modal-body">
   <!--slot 相当于body占位符-->
   <slot name="body">
   default body
   </slot>
  </div>
  <div class="modal-footer">
   <!--slot 相当于footer占位符-->
   <slot name="footer">
   default footer
   </slot>
   <button class="modal-default-button" @click="show = false">ok</button>
  </div>
  </div>
 </div>
 </div>
</script>
<div id="app">
 <!--点击按钮时设置vue实例特性showmodal的值为true-->
 <button id="show-modal" @click="showmodal = true">show modal</button>
 <!--modal是自定义的一个插件,插件的特性show绑定vue实例的showmodal特性-->
 <modal :show.sync="showmodal">
 <!--替换modal插件中slot那么为header的内容-->
 <h3 slot="header">custom header</h3>
 </modal>
</div>

 js代码: 

//定义一个插件,名称为modal
vue.component("modal", {
 //插件的模板绑定id为modal-template的dom元素内容
 template: "#modal-template",
 props: {
 //特性,类型为布尔
 show:{
  type: boolean,
  required: true,
  twoway: true
 }
 }
});
//实例化vue,作用域在id为app元素下,
new vue({
 el: "#app",
 data: {
 //特性,默认值为false
 showmodal: false
 }
});

css代码: 

.modal-mask {
 position: fixed;
 z-index: 9998;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(0, 0, 0, .5);
 display: table;
 transition: opacity .3s ease;
}

.modal-wrapper {
 display: table-cell;
 vertical-align: middle;
}

.modal-container {
 width: 300px;
 margin: 0px auto;
 padding: 20px 30px;
 background-color: #fff;
 border-radius: 2px;
 box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
 transition: all .3s ease;
 font-family: helvetica, arial, sans-serif;
}

.modal-header h3 {
 margin-top: 0;
 color: #42b983;
}

.modal-body {
 margin: 20px 0;
}

.modal-default-button {
 float: right;
}

/*
* the following styles are auto-applied to elements with
* v-transition="modal" when their visiblity is toggled
* by vue.js.
*
* you can easily play with the modal transition by editing
* these styles.
*/

.modal-enter, .modal-leave {
 opacity: 0;
}

.modal-enter .modal-container,
.modal-leave .modal-container {
 -webkit-transform: scale(1.1);
 transform: scale(1.1);
}

本文已被整理到了《vue.js前端组件学习教程》,欢迎大家学习阅读。

关于vue.js组件的教程,请大家点击专题vue.js组件学习教程进行学习。

由于自己在项目中还没怎么深入使用组件的功能,所以自己对组件的理解也不深入,介绍的比较肤浅,谢谢大家的阅读。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网