exbo-element-components
v1.0.0
Published
A collection of enhanced Element Plus components for Vue 3
Maintainers
Readme
@exbo/element-components
A collection of enhanced Element Plus components for Vue 3.
Installation
npm install @exbo/element-componentsUsage
Global Registration
import { createApp } from 'vue'
import ElementPlus from 'element-plus'
import ElementComponents from '@exbo/element-components'
import 'element-plus/dist/index.css'
const app = createApp(App)
app.use(ElementPlus)
app.use(ElementComponents)Individual Component Registration
<template>
<CustomWidthInput v-model="value" placeholder="Enter text" />
</template>
<script setup>
import { CustomWidthInput } from '@exbo/element-components'
</script>Components
CustomWidthInput- Enhanced input component with customizable widthCascaderWithAll- Cascader with "All" optionCheckboxGroup- Enhanced checkbox groupCustomCheckboxGroup- Customizable checkbox groupCustomInput- Custom input componentCustomInputTwo- Alternative custom inputCustomNamingRuleDialog- Dialog for naming rulesDatePickerWrapper- Wrapped date pickerDatePickerWrapperSeparate- Separate date picker wrapperOperationColumn- Operation column componentRadioGroupWrapper- Radio group wrapperSelectWithAll- Select with "All" optionTimePickerWrapper- Time picker wrapperMyPagination- Custom pagination component
License
MIT
