parent
91a7f8196e
commit
ee86edfdde
7 changed files with 58 additions and 31 deletions
@ -1,13 +0,0 @@ |
|||||||
<template> |
|
||||||
<h2>我是About的内容</h2> |
|
||||||
</template> |
|
||||||
|
|
||||||
<script> |
|
||||||
export default { |
|
||||||
name: "About" |
|
||||||
} |
|
||||||
</script> |
|
||||||
|
|
||||||
<style scoped> |
|
||||||
|
|
||||||
</style> |
|
@ -0,0 +1,11 @@ |
|||||||
|
<template> |
||||||
|
<div class="col-xs-offset-2 col-xs-8"> |
||||||
|
<div class="page-header"><h2>Vue Router Demo</h2></div> |
||||||
|
</div> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
export default { |
||||||
|
name: "Banner" |
||||||
|
} |
||||||
|
</script> |
@ -1,13 +0,0 @@ |
|||||||
<template> |
|
||||||
<h2>我是Home的内容</h2> |
|
||||||
</template> |
|
||||||
|
|
||||||
<script> |
|
||||||
export default { |
|
||||||
name: "Home" |
|
||||||
} |
|
||||||
</script> |
|
||||||
|
|
||||||
<style scoped> |
|
||||||
|
|
||||||
</style> |
|
@ -0,0 +1,21 @@ |
|||||||
|
<template> |
||||||
|
<h2>我是About的内容</h2> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
export default { |
||||||
|
name: "About", |
||||||
|
mounted() { |
||||||
|
console.log('About组件挂着完成', this) |
||||||
|
window.aboutRoute = this.$route |
||||||
|
window.aboutRouter = this.$router |
||||||
|
}, |
||||||
|
beforeDestroy() { |
||||||
|
console.log('About组件即将销毁') |
||||||
|
} |
||||||
|
} |
||||||
|
</script> |
||||||
|
|
||||||
|
<style scoped> |
||||||
|
|
||||||
|
</style> |
@ -0,0 +1,21 @@ |
|||||||
|
<template> |
||||||
|
<h2>我是Home的内容</h2> |
||||||
|
</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> |
Loading…
Reference in new issue