实现权限列表与权限渲染组件

This commit is contained in:
2026-03-31 10:56:01 +08:00
parent 2c7970796f
commit 12b60e74df
7 changed files with 94 additions and 3 deletions

5
src/lib/stores/scopes.ts Normal file
View File

@@ -0,0 +1,5 @@
import { atom } from "jotai"
const scopesAtom = atom<string[]>([])
export { scopesAtom }