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
| <script setup>
| import {ref} from "vue";
|
| const checked = ref(true);
| const value = ref(2);
| </script>
|
| <template>
| <div class="app-container">
| <a-card >
| <Section title="开机启动">
| <a-checkbox v-model:checked="checked">开机自动启动</a-checkbox>
| </Section>
| <Section title="关闭主窗口">
| <a-radio-group v-model:value="value">
| <a-radio :value="1">最小化到托盘</a-radio>
| <a-radio :value="2">退出程序</a-radio>
| </a-radio-group>
| </Section>
| <Section title="系统版本">
| v2024.08.23
| </Section>
| </a-card>
| </div>
|
| </template>
|
| <style scoped>
|
| </style>
|
|