共计 205 个字符,预计需要花费 1 分钟才能阅读完成。
路由组件传参
命名视图
ShopMain.vue
<template>
<h2>shop 次要内容 </h2>
</template>
<script>
export default {
name: "ShopMain",
props: ['id'],
mounted() {console.log(this.id)
}
}
</script>
<style scoped>
</style>
不同的历史记录
hash 模式
二者的区别是有无 #
html5 模式
# 隐没
正文完
发表至: vue-router
2023-01-17