Package Exports
- element-pro-components
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (element-pro-components) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
element-pro-components (WIP)
a component library for Vue 3 base on element-plus
构建中...
docs 文档暂时未更新,参考 example 文件夹
TODO:
components
- ProLayout
- ProMenu
- ProBreadcrumb
- ProTabs
- ProInputTag
- ProForm
- ProSerach
- ProTable
- ProList
- ProCrud
- ...
test
docs (rebuild)
...
Installation
yarn add element-pro-components
# or
npm i element-pro-components
Usage
import { createApp } from 'vue'
import App from './App.vue'
import ElementPro from 'element-pro-components'
import 'element-pro-components/lib/index.min.css'
createApp(App).use(ElementPro).mount('#app')
<template>
<pro-layout />
</template>