您的位置:首页 > Web前端 > Vue.js

[Vue] 动态组件以及v-once的使用

2019-02-15 00:38 369 查看

PROPS

例子

  • 动态组件:code
  • v-once指令: code
  • 实现功能:
点击Change按钮,切换child-one和child-two组件。

动态组件

  • 实现
1. 创建组件
Vue.component('child-one',{
template: '<div>child-one</div>'
})

Vue.component('child-two',{
template: '<div>child-two</div>'
})

2. 使用component标签以及is指令
<component :is="type"></component>

3. 创建按钮以及绑定handleClick事件
<button @click="handleClick">Change component</button>

4. 实现方法
methods: {
handleClick: function(){
this.type = this.type === 'child-one' ? 'child-two' : 'child-one';
}
}

总结:这种方法简单易读。可以轻松切换组件

v-once指令

1. 创建组件(注意这里使用了v-once组件)
Vue.component('child-one',{
template: '<div v-once>child-one</div>',
mounted:function(){
console.log('child-one created');
}
})
Vue.component('child-two',{
template: '<div v-once>child-two</div>',
mounted:function(){
console.log('child-two created');
}
})

2. 使用组件以及创建按钮
<child-one v-if="type === 'child-one'"></child-one>
<child-two v-if="type === 'child-two'"></child-two>
<button @click="handleClick">Change component</button>

3. 实现方法
methods: {
handleClick: function(){
this.type = this.type === 'child-one' ? 'child-two' : 'child-one';
}
}

总结:

  1. 这种方法实现了和上面一样的功能。
  2. 这里使用了v-once指令,这种指令可以在DOM创建之后放到内存中,然后下次切换的时候直接从内存中取出,这样可以大大调高效率。
  3. 通常用于一些静态组件的使用。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: