张卓
2022-09-29 4ef1c909df36c48f7f040e9ec408fc15e6745e71
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<template>
  <div id="app">
    <router-view />
  </div>
</template>
 
<script>
// import { getMenus } from '@/router/dynamicRouter.js'
export default {
  name: 'App'
  // mounted() {
  //   console.log('-------------')
  //   setTimeout(() => {
  //     getMenus()
  //   }, 100)
  // }
}
</script>
<style >
#app{
  height: 100%;
}
</style>