[新增] select 组件

This commit is contained in:
就眠仪式
2021-10-04 07:32:11 +08:00
parent 1ca3fae28e
commit 8f3b104c8b
5 changed files with 53 additions and 16 deletions

View File

@@ -1 +1,2 @@
export * from './public'
export * from './select'

View File

@@ -0,0 +1,4 @@
export interface SelectItem {
label?: String,
value?: String
}