UNPKG
vue-pro-components
Version:
latest (0.7.8)
0.7.8
0.7.7
0.7.5
0.7.4
0.7.3
0.7.2
0.7.0
0.6.0
0.4.0
0.3.1
0.3.0
0.2.3
0.2.2
0.2.1
0.2.0
0.1.4
0.0.2
0.0.1
0.0.0
pro components based on vue3
github.com/cumt-robin/vue-pro-components
cumt-robin/vue-pro-components
vue-pro-components
/
src
/
select-icon
/
props.ts
17 lines
(14 loc)
•
331 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import
type
{
ExtractPropTypes
,
PropType
}
from
'vue'
export
const
props = {
value
: {
type
:
String
, },
// 图标清单
icons
: {
type
:
Array
as
PropType
<
string
[]>,
default
(
) {
return
[] }, }, }
export
type
VpIconSelectProps
=
Partial
<
ExtractPropTypes
<
typeof
props>>