vue路由參數?
antd vue路由參數的表達主要可以參照以下標準const User = { template: '<div>User</div>' } const router = new Vuerouter({ routes: [ // 動態路徑參數 以冒號開頭 { path: '/user/:id', component: User } ] })。
const User = { template: '<div>User {{ $route.params.id }}</div>' }。const User = { template: '...', watch: { $route(to, from) { // 對路由變化作出響應... } } }。// 給出一個路由 { path: '/user-*' } this.$router.push('/user-admin') this.$route.params.pathMatch // 'admin' // 給出一個路由 { path: '*' } this.$router.push('/non-existing') this.$route.params.pathMatch // '/non-上一篇棋魂算不算神作?