123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <div id="app">
- <!-- <img src="./assets/logo.png"> -->
- <router-view v-if="isRouterAlive" />
- </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
- })
- }
- },
- watch: {
- '$route': function (to, from) {
- document.body.scrollTop = 0
- document.documentElement.scrollTop = 0
- }
- }
-
- }
- </script>
-
- <style>
-
- </style>
|