quanyawei
2024-02-01 17e751b24202b92c1fc59486741293ce199d6089
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<template>
  <div id="app">
    <router-view />
  </div>
</template>
 
<script>
// import { getMenus } from '@/router/dynamicRouter.js'
import { mixins } from './mixins/downLoadNotice'
export default {
  name: 'App',
  mixins: [mixins]
  // mounted() {
  //   console.log('-------------')
  //   setTimeout(() => {
  //     getMenus()
  //   }, 100)
  // }
}
</script>
<style >
#app {
  height: 100%;
}
.amap-sug-result { z-index: 99999 !important; }
</style>