# element3 **Repository Path**: 670696652/element3 ## Basic Information - **Project Name**: element3 - **Description**: (WIP)fork from ElemeFE/element ,A Vue.js 3.0 UI Toolkit for Web - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-11 - **Last Updated**: 2021-03-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # (wip) element for vue3 1. 修改 build/bin/buld-entry.js 的 72 行。 2. 组件加上白名单,比如加一个 'input',执行 `npm run dev`。 3. 访问文档(也可访问 http://localhost:8086/#/ ),在对应的组件页面调试报错即可,完成的记得标记。 4. 提交代码前请先拉取代码,commit 时信息格式为 key: content,如 `refactor: refactor alert`,注意表达简洁易懂。 ## Install ```js npm install element3 -S ``` ## Quick Start ```js import 'element3/lib/theme-chalk/index.css' import { createApp } from 'vue' import Element3 from 'element3' import App from './App.vue' const app = createApp(App) app.use(Element3) app.mount('#app') // or import { ElButton // ... } from 'element3' Vue.use(ElButton) ``` > 注意暂时不要在生产坏境使用 ## export components 目前已经导出可以使用的组件列表 - ElButton - ElSwitch - ElProgress - ElLink - ElIcon - ElBreadcrumb - ElBreadcrumbItem - ElContainer ## Join Discussion Group Scan the QR code using [Dingtalk App](https://www.dingtalk.com/) to join in discussion group : Join Discusion Group ## Contribution [See Contributing Guide.](https://juejin.im/post/6864462363039531022)


Special thanks to the generous sponsorship by:

> A Vue.js 3.0 UI Toolkit for Web.(WIP) ## Links - Homepage and documentation - [International users](http://element.eleme.io/#/en-US) - [Chinese users](http://element-cn.eleme.io/#/zh-CN) - [Spanish users](http://element.eleme.io/#/es) - [French users](http://element.eleme.io/#/fr-FR) - [awesome-element](https://github.com/ElementUI/awesome-element) - [FAQ](./FAQ.md) - [Customize theme](http://element.eleme.io/#/en-US/component/custom-theme) - [Preview and generate theme online](https://elementui.github.io/theme-chalk-preview) - [Element for React](https://github.com/elemefe/element-react) - [Element for Angular](https://github.com/ElemeFE/element-angular) - [Atom helper](https://github.com/ElemeFE/element-helper) - [Visual Studio Code helper](https://github.com/ElemeFE/vscode-element-helper) - Starter kit - [element-starter](https://github.com/ElementUI/element-starter) - [element-in-laravel-starter](https://github.com/ElementUI/element-in-laravel-starter) - [Design resources](https://github.com/ElementUI/Resources) - Gitter - [International users](https://gitter.im/element-en/Lobby) - [Chinese users](https://gitter.im/ElemeFE/element) ## Install ```shell npm install element-ui -S ``` ## Quick Start ```javascript import Vue from 'vue' import Element from 'element-ui' Vue.use(Element) // or import { Select, Button // ... } from 'element-ui' Vue.component(Select.name, Select) Vue.component(Button.name, Button) ``` For more information, please refer to [Quick Start](http://element.eleme.io/#/en-US/component/quickstart) in our documentation. ## LICENSE [MIT](LICENSE)