<template> <div id="app"> <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; }) }, }, } </script> <style> @import "common/fonts/font.css"; #app { width: 100%; height: 100%; /*min-width: 998px;*/ background: #f5f5f5; overflow: hidden; font-family: fz; } </style>