Vue内置的Component标签用于动态切换组件

Posted 千と千寻の

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue内置的Component标签用于动态切换组件相关的知识,希望对你有一定的参考价值。

html

<div id="app">
            <component :is="cut"></component>
            <button @click="current">点击切换</button>
      </div>

js

 

var classA = {
        template:`<div>状态1</div>`
     };
      var classB = {
        template:`<div>状态2</div>`
     };
      var classC = {
        template:`<div>状态3</div>`
     }
        var vm = new Vue({
            el:"#app",
            data:{
                cut:classA
            },
            methods:{
                current:function(){
                    if(this.cut==classA){
                        this.cut=classB
                    }else if(this.cut==classB){
                        this.cut=classC
                    }else{
                        this.cut=classA
                    } 
                }
            }
           
        })

 

以上是关于Vue内置的Component标签用于动态切换组件的主要内容,如果未能解决你的问题,请参考以下文章

Vue组件component标签的使用

第二十八篇 vue

[vue3进阶] 2.动态组件

vue 通过 component 动态渲染组件

Vue动态组件 & 插槽 & 自定义指令

Vue3动态组件缓存组件分发组件