feat: add personal workbench view with todo and reimbursement tracking

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-05 18:22:47 +08:00
parent ad66067694
commit ab9f132192
8 changed files with 770 additions and 29 deletions

View File

@@ -0,0 +1,9 @@
<template>
<PersonalWorkbench :show-header="false" @open-assistant="emit('openAssistant')" />
</template>
<script setup>
import PersonalWorkbench from '../components/business/PersonalWorkbench.vue'
const emit = defineEmits(['openAssistant'])
</script>