本文主要是介绍Vue 内置组件component,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1 与
路由跳转<router-link>(或this.$router.push)与<router-view>在同一个vue里
vue是单页面应用,所有页面都在app.vue里
在app.vue里有<router-link><router-view>可以接受home组件
在home.vue里又有<router-link><router-view>
虽然叫路由跳转,在地址栏url也变化了,但其实没有跳到其他页面.
路由跳转是沿用以前多页面的叫法,在单页面应用中,其实是将其他页面加载到当前页面中,或者叫路由引用更为合适.
2 内置component
使用:is属性,动态渲染组件。
<component :is='state'></component>
示例:
<div id="app">
<button @click="change1">son1</button>
<button @click="change2">son2</button>
<component :is='state'></component>
</div>
<script>
var vm = new Vue({
el: "#app",
data() {
return {
state: 'son1'
}
},
methods: {
change1() {
this.state = 'son1'
},
change2() {
this.state = 'son2'
}
},
components: {
son1,
son2
}
})
</script>
这篇关于Vue 内置组件component的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!