blog/docs/.vuepress/theme/mixins/moduleTransiton.js

22 lines
335 B
JavaScript

export default {
data () {
return {
recoShowModule: false
}
},
mounted () {
this.recoShowModule = true
},
watch: {
'$route' (newV, oldV) {
if (newV.path === oldV.path) return
this.recoShowModule = false
setTimeout(() => {
this.recoShowModule = true
}, 200)
}
}
}