feat(web): add pinia/vue-flow deps and update API layer

This commit is contained in:
2026-07-07 15:22:05 +08:00
parent 891ded382e
commit bcef04a8cc
10 changed files with 445 additions and 32 deletions

View File

@@ -4,6 +4,10 @@ export function createPerson(data: any) {
return client.post('/api/v1/person', data)
}
export function listPersons() {
return client.get('/api/v1/person/list')
}
export function listTags() {
return client.get('/api/v1/tag/list')
}