
router
一只爱吃糖的小羊
略略略
展开
-
vue2.0中.vue文件页面跳转之.$router.push
vue2.0在使用的过程中, .vue文件之间的跳转,在template中的常见写法是: <router-link to="/miniCard/statement/horizon"> <button class="btn btn-default colorDe">继续</button> </router-link> 但是有时的需...原创 2017-05-15 17:07:45 · 14281 阅读 · 3 评论 -
vue2.0之.vue文件之间$router传值
开发项目时,常会需要不同页面之间传递某个参数的值,现在分享一下$router的方法,需求是 a.vue文件的一个参数price要传到 b.vue文件,即 a.vue文件跳转到 b.vue的时候带过去price参数。a.vue 的代码: <!--html--> <button @click = "func()">跳转</button> //js <s...原创 2017-05-16 18:16:53 · 1658 阅读 · 0 评论