UNPKG
winbox-ui-next
Version:
beta (0.37.2-beta)
beta.2 (0.37.2-beta.2)
beta.3 (0.37.2-beta.3)
beta.4 (0.37.2-beta.4)
beta1 (0.37.2-beta1)
latest (0.37.12)
0.37.12
0.37.11
0.37.10
0.37.9
0.37.8
0.37.7
0.37.6
0.37.5
0.37.4
0.37.3
0.37.2-beta1
0.37.2-beta.4
0.37.2-beta.3
0.37.2-beta.2
0.37.2-beta
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
We Design Vue 2.0: A Vue.js 3 UI Library
winbox.wenge.com/vue-next
winbox-ui-next
/
es
/
_components
/
dropdown
/
dropdown-optgroup.js
17 lines
(16 loc)
•
311 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import
{ defineComponent }
from
"vue"
;
import
{ getPrefixCls }
from
"../../_utils/global-config.js"
;
defineComponent
({
name
:
"DropdownOptgroup"
,
props
: {
label
: {
type
:
String
} },
setup
(
) {
const
prefixCls =
getPrefixCls
(
"dropdown-group"
);
return
{ prefixCls }; } });