html:html
<div id="app"> <h1>Hello App!</h1> <p> <!-- 使用 router-link 組件來導航. --> <!-- 經過傳入 `to` 屬性指定連接. --> <!-- <router-link> 默認會被渲染成一個 `<a>` 標籤 --> <router-link to="/foo">Go to Foo</router-link> <router-link to="/bar">Go to Bar</router-link> <!-- 傳參 --> <router-link :to="routeObj">Go to Bar</router-link> </p> <!-- 路由出口 --> <!-- 路由匹配到的組件將渲染在這裏 --> <router-view></router-view> </div> <script> export default { name: 'lb', // 問卷調查 data () { return { routeObj:{ path: '/foo', query: { data: 'lalala' } } } } } </script>
router.js:vue
import Vue from 'vue'; import vueRouter from 'vue-router'; Vue.use(vueRouter); // 0. 若是使用模塊化機制編程,導入Vue和VueRouter,要調用 Vue.use(VueRouter) // 1. 定義(路由)組件。 // 也能夠從其餘文件 import 進來 const Foo = { template: '<div>foo</div>' } const Bar = { template: '<div>bar</div>' } // 2. 定義路由 // 每一個路由應該映射一個組件。 其中"component" 能夠是 // 經過 Vue.extend() 建立的組件構造器, // 或者,只是一個組件配置對象。 const routes = [ { path: '/foo', component: Foo }, { path: '/bar', component: Bar } ] // 3. 建立 router 實例,而後傳 `routes` 配置 // 你還能夠傳別的配置參數, 不過先這麼簡單着吧。 const router = new VueRouter({ routes // (縮寫)至關於 routes: routes }) // 4. 建立和掛載根實例。 // 記得要經過 router 配置參數注入路由, // 從而讓整個應用都有路由功能 const app = new Vue({ router }).$mount('#app') export default router
this.$router.push();vue-router
//query方法傳值 this.$router.push({path : '/xxx', query : { data }}) //query方法取值 this.$route.query.data
注意:傳參是this.$router,接收參數是this.$route編程
//params方法傳值 this.$router.push({name : 'xxx', params : { data }}) //params取值 this.$route.params.data
注意:params傳參,push裏面只能是 name:'xxxx',不能是path:'/xxx'app
1.$router爲VueRouter實例,想要導航到不一樣URL,則使用$router.push方法
2.$route爲當前router跳轉對象,裏面能夠獲取name、path、query、params等模塊化