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
27
28
29
30
31
32
33
34
35
36
37
38
39
| <template>
| <div class="system-role-container">
| 6666666
| </div>
| </template>
|
| <script lang="ts">
| import { toRefs, reactive, onMounted, ref, defineComponent } from 'vue';
|
| // 定义接口来定义对象的类型
| interface TableData {
|
| }
| interface TableDataState {
|
| }
|
| export default defineComponent({
| name: 'bigScreen',
| components: { },
| setup() {
| const roleDialogRef = ref();
| const state = reactive<TableDataState>({
|
| });
|
| // 页面加载时
| onMounted(() => {
|
| });
| return {
| ...toRefs(state)
| };
| }
| });
| </script>
| <style lang="scss" scoped>
|
| </style>
|
|