编程式路由
parent
207f3566d6
commit
b40172000e
@ -0,0 +1,12 @@
|
||||
<template>
|
||||
<div class="goods">
|
||||
This is goods:
|
||||
<span>{{$route.query.goodsId}}</span>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
|
||||
}
|
||||
</script>
|
||||
<style scoped></style>
|
@ -1,17 +1,41 @@
|
||||
<template>
|
||||
<div class="test">
|
||||
<!-- 动态路由 -->
|
||||
This is id: {{$route.params.testId}}
|
||||
<!-- 动态路由 -->
|
||||
This is id: {{$route.params.testId}}
|
||||
|
||||
<!-- 嵌套路由 -->
|
||||
<router-link to="/test/title1">标题1</router-link>
|
||||
<router-link to="/test/title2">标题2</router-link>
|
||||
<router-view></router-view>
|
||||
<!-- 嵌套路由 -->
|
||||
<router-link to="/test/title1">标题1</router-link>
|
||||
<router-link to="/test/title2">标题2</router-link>
|
||||
<router-view></router-view>
|
||||
|
||||
<!-- 编程式路由 -->
|
||||
<div @click="gotoGoods">跳转到商品详情页面</div>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
msg: 'hello vue'
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
gotoGoods() {
|
||||
//this.$router.push('/goods');
|
||||
|
||||
// this.$router.push({
|
||||
// path: '/goods?goodsId=666'
|
||||
// });
|
||||
|
||||
this.$router.push({
|
||||
path: '/goods',
|
||||
query: {
|
||||
goodsId: 666
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
<style scoped></style>
|
||||
|
Loading…
Reference in New Issue