You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
747 B
36 lines
747 B
<template> |
|
<div> |
|
<h2>Home组件内容</h2> |
|
<div> |
|
<ul class="nav nav-tabs"> |
|
<li> |
|
<router-link class="list-group-item" active-class="active" to="/home/news">News</router-link> |
|
</li> |
|
<li> |
|
<router-link class="list-group-item" active-class="active" to="/home/message">Message</router-link> |
|
</li> |
|
</ul> |
|
<ul> |
|
<router-view></router-view> |
|
</ul> |
|
</div> |
|
</div> |
|
</template> |
|
|
|
<script> |
|
export default { |
|
name: "Home", |
|
mounted() { |
|
console.log('Home组件挂着完成', this) |
|
window.homeRoute = this.$route |
|
window.homeRouter = this.$router |
|
}, |
|
beforeDestroy() { |
|
console.log('Home组件即将销毁') |
|
} |
|
} |
|
</script> |
|
|
|
<style scoped> |
|
|
|
</style> |