150  
查询码:00000929
Vue动态组件
来源:https://blog.csdn.net/xiaohanzhu000/article/details/82195037
作者: 王贵阳 于 2019年12月25日 发布在分类 / FM组 / FM其他 下,并于 2019年12月25日 编辑
Vue

让多个组件使用同一个挂载点,并动态切换,这就是动态组件。本文将详细介绍Vue动态组件

通过使用保留的 <component> 元素,动态地绑定到它的 is 特性,可以实现动态组件

<div id="example">
  <button @click="change">切换页面</button>
  <component :is="currentView"></component>
</div>
<script>
var home = {template:'<div>我是主页</div>'};
var post = {template:'<div>我是提交页</div>'};
var archive = {template:'<div>我是存档页</div>'};
new Vue({
  el: '#example',
  components: {
    home,
    post,
    archive,
  },
  data:{
    index:0,
    arr:['home','post','archive'],
  },
  computed:{
    currentView(){
        return this.arr[this.index];
    }
  },
  methods:{
    change(){
      this.index = (++this.index)%3;
    }
  }
})
</script>

也可以直接绑定到组件对象上

<div id="example">
  <button @click="change">切换页面</button>
  <component :is="currentView"></component>
</div>
<script>
new Vue({
  el: '#example',
  data:{
    index:0,
    arr:[
      {template:`<div>我是主页</div>`},
      {template:`<div>我是提交页</div>`},
      {template:`<div>我是存档页</div>`}
    ],
  },
  computed:{
    currentView(){
        return this.arr[this.index];
    }
  },
  methods:{
    change(){
      this.index = (++this.index)%3;
    }
  }
})
</script>



 推荐知识

 历史版本

修改日期 修改人 备注
2019-12-25 19:15:57[当前版本] 王贵阳 创建版本

知识分享平台 -V 4.8.7 -wcp