我有一个正在使用的应用程序并注册了路由器,我所需要的只是将动态道具通过传递给某些组件。
app.vue
<template>
<v-app>
<router-view :user="userVariable"></router-view>
</v-app>
</template>
router.js
Vue.use(Router);
export default new Router({
mode: 'history',
base: process.env.BASE_URL,
routes: [
{
path: '/login',
name: 'Login',
component: Login,
props: true,
},
{
path: '/profile',
name: 'profile',
component: Profile,
props: true,
},
],
});
我在启动组件时获得了道具,但是在更新userVariable
的值时无法获得更新的道具。 :(