123456789101112131415161718192021222324252627282930 |
- <template>
- <div id="app">
- <router-view v-if="isRouterAlive"></router-view>
- </div>
- </template>
-
- <script>
- export default {
- name: "App",
- data () {
- return {
- isRouterAlive: true
- }
- }, methods: {
- reload () {
- this.isRouterAlive = false
- this.$nextTick(function () {
- this.isRouterAlive = true
- })
- }
- }
- };
- </script>
-
- <style>
- body .el-table th.gutter {
- display: table-cell !important;
- }
- </style>
|