UNPKG
@lincy/tnui-vue3-uniapp
Version:
latest (1.0.23)
1.0.23
1.0.21
TuniaoUI for vue3 uniapp
github.com/lincenying/tuniaoui-vue3-uniapp
lincenying/tuniaoui-vue3-uniapp
@lincy/tnui-vue3-uniapp
/
components
/
base
/
common-props
/
subsection
/
index.ts
17 lines
(15 loc)
•
386 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import
{ buildProps }
from
'../../../../utils'
export
const
subsectionBaseProps =
buildProps
({
/** *
@description
默认颜色,以tn开头使用图鸟内置的颜色 */
color
:
String
,
/** *
@description
激活时的颜色,以tn开头使用图鸟内置的颜色 */
activeColor
:
String
,
/** *
@description
是否禁用 */
disabled
:
Boolean
, }
as
const
)