We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tabview 刷新 component onmounted 执行了俩次
The text was updated successfully, but these errors were encountered:
<router-view v-slot='{ Component }'> <keep-alive :include='keepAliveNameList'> <component :is='Component' :key='refreshRouterViewKey' class='w100' /> </keep-alive> </router-view>
发生这种情况是把 transition 去掉, 加回来就不会发生了 ,不知道为啥。
<router-view v-slot='{ Component }'> <transition name="" mode="out-in"> <keep-alive :include='keepAliveNameList'> <component :is='Component' :key='refreshRouterViewKey' class='w100' /> </keep-alive> </transition> </router-view>
Sorry, something went wrong.
No branches or pull requests
tabview 刷新 component onmounted 执行了俩次
The text was updated successfully, but these errors were encountered: