UNPKG

@mekari/mekari-ui-vue

Version:

--- General web components in Mekari. The components are made using vue.js as its framework. Styling of components on Mekari UI Vue uses [Mekari UI Toolkit](https://bitbucket.org/mid-kelola-indonesia/mekari-ui-toolkit/src/master/). Don't forget to import

19 lines (13 loc) 929 B
> Available since version: `1.0.0` > Styling from Mekari UI Toolkit that must be used on this component are (or with its `.scss`): > - `./css/components/reboot-bootstrap` > - `./css/components/form` Form select component act just like select element (`<select>`) on native HTML. It is mainly used as a field where the user can enter data. Form select component is based on [BootstraVue v2.21.1](https://bootstrap-vue.org/docs/components/form-select), so for more information you can see the [BootstraVue](https://bootstrap-vue.org/docs/components/form-select) page. You can import the Form Select component with this: ```js import { MFormSelect } from '@mekari/mekari-ui-vue/src'; // These two are subcomponents from Form Select component import { MFormSelectOption, MFormSelectOptionGroup } from '@mekari/mekari-ui-vue/src'; // For more usage, you can see here: // https://bootstrap-vue.org/docs/components/form-select ```