vue动态切换组件

Posted qiyc

tags:

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

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<div id="app">
<a href="#" @click.prevent="cname=‘login‘">登录</a>
<a href="#" @click.prevent="cname=‘register‘">注册</a>
<!-- component是一个占位符,:is属性,显示组件-->
<!--<component :is="‘login‘"></component>-->
<component :is="cname"></component>
</div>
<script src="https://cdn.bootcss.com/vue/2.5.20/vue.min.js"></script>
<script>
Vue.component(‘login‘,{
template:‘<h3>登录组件</h3>‘
})
Vue.component(‘register‘,{
template:‘<h3>注册组件</h3>‘
})
var vm = new Vue({
el:‘#app‘,
data:{
cname:‘login‘
},
methods:{

}
})
</script>
</body>
</html>


































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

vue2.0 动态切换组件

vue动态切换组件

vuetab按钮切换动态数据间隙按钮位置掉低的问题

Vue中is属性的用法 可以动态切换组件

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

vue-tab切换