欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

vue路由參數

阮建安2年前20瀏覽0評論

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-