30 lines
417 B
Vue
30 lines
417 B
Vue
<template>
|
|
<div v-if="isRouterAlive" id="app">
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
|
|
export default {
|
|
name: 'App',
|
|
provide() {
|
|
return {
|
|
reload: this.reload
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
isRouterAlive: true
|
|
}
|
|
},
|
|
methods: {
|
|
reload() {
|
|
this.isRouterAlive = false
|
|
this.$nextTick(function() {
|
|
this.isRouterAlive = true
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|