1234567891011121314151617181920212223242526272829303132333435363738 |
- <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>
- .el-table--medium th{
- height: 35px !important;
- padding: 2px 0 !important;
- }
- .el-table--medium td{
- /* padding: 2px 0 !important; */
- }
- </style>
|