1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <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
- })
- //this.noreadCounts()
- },
- },
- components:{
- }
- }
- </script>
- <style lang="scss" scoped>
- #app {
- }
- #nav {
- padding: 30px;
- a {
- font-weight: bold;
- color: #2c3e50;
- &.router-link-exact-active {
- color: #42b983;
- }
- }
- }
- .el-table th.gutter{
- display: table-cell!important;
- }
- </style>
|