feat: 新增账号设置组件

This commit is contained in:
duanshuwen
2025-12-07 19:58:03 +08:00
parent b643972d21
commit 1d8ee0bf64
6 changed files with 123 additions and 19 deletions

View File

@@ -1,18 +1,11 @@
<template>
<Layout>
<template #task>
<Task />
</template>
</Layout>
<div class="bg-white box-border w-full h-full rounded-[16px] flex">
<SystemConfig />
<AccountSetting />
</div>
</template>
<script setup lang="ts">
import Task from '../components/Task/index.vue'
const openBaidu = () => {
(window as any).ipcAPI?.openBaidu()
// 发送日志
(window as any).ipcAPI?.logToMain('info', '打开百度')
}
import SystemConfig from './components/SystemConfig/index.vue'
import AccountSetting from './components/AccountSetting/index.vue'
</script>