1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| <script setup>
| import AppLayout from './components/AppLayout.vue'
| import { useCounterStore } from '@/stores/counter.js'
| import { useRoute } from 'vue-router'
|
| const enterprise = useCounterStore()
| const route = useRoute()
|
| console.log(route.query)
|
| // enterprise.setCompanyId(8)
| // enterprise.setDepartId(111)
| </script>
|
| <template>
| <AppLayout />
| </template>
|
| <style scoped>
|
| </style>
|
|