1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| <template>
| <div class="wrap">
| <dict-list />
| </div>
| </template>
|
| <script lang="ts" setup>
| import { useCool } from '/@/cool';
| import DictList from '/$/dict/views/list.vue';
|
| const { service } = useCool();
| </script>
|
| <style lang="scss" scoped>
| .wrap {
| height: 600px;
| border: 1px solid var(--el-border-color);
| }
| </style>
|
|