mirror of
https://github.com/fawney19/Aether.git
synced 2026-01-07 10:12:27 +08:00
- 新增 ModelMultiSelect 组件,支持显示和移除已失效的模型 - 新增 useInvalidModels composable 检测 allowed_models 中的无效引用 - 重构 StandaloneKeyFormDialog 和 UserFormDialog 使用新组件 - 补充 GlobalModel 删除逻辑的设计说明注释
13 lines
352 B
TypeScript
13 lines
352 B
TypeScript
/**
|
|
* Common Components
|
|
* 常用的自定义业务组件
|
|
*/
|
|
|
|
// 状态和反馈组件
|
|
export { default as EmptyState } from './EmptyState.vue'
|
|
export { default as AlertDialog } from './AlertDialog.vue'
|
|
export { default as LoadingState } from './LoadingState.vue'
|
|
|
|
// 表单组件
|
|
export { default as ModelMultiSelect } from './ModelMultiSelect.vue'
|