UNPKG

winbox-ui-next

Version:

We Design Vue 2.0: A Vue.js 3 UI Library

17 lines (16 loc) 311 B
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 }; } });