Axe-ui is a set of open source component libraries for PC-side based on Vue3.0 + TS. Use the latest mainstream technologies such as vue3 and TypeScript to develop and use it out of the box.
Everyone is welcome to participate in the co-construction together. Learn and grow together~!
npm install axe-ui -SGlobal introduction :
import { createApp } from 'vue'
import App from './App.vue'
import Axe from 'axe-ui'
import 'axe-ui/dist/axe.css'
createApp ( App ) . use ( Axe ) . mount ( '#app' )This component supports on-demand import . You can also import the required components separately like the following:
import { createApp } from 'vue'
import App from './App.vue'
import { AxeInput , AxeButton /* ...其他组件 */ } from 'axe-ui'
// 或者:import AxeButton from 'axe-ui/dist/lib/button/index.js';
import 'axe-ui/dist/css/input/style.css'
import 'axe-ui/dist/css/button/style.css'
const app = createApp ( App )
app . component ( AxeInput . name , AxeInput )
app . component ( AxeButton . name , AxeButton )
/* or
* app.use(AxeInput)
* app.use(AxeButton)
*/
app . mount ( '#app' ) Chrome 80+ browser is recommended for local development
Supports modern browsers, not IE
IE | Edge | Firefox | Chrome | Safari |
|---|---|---|---|---|
| Not support | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
How to contribute : Require an Issue or submit a Pull Request.
Contribution Guide: Axe warmly welcomes your participation! Please read our contribution guide before writing code. He records all the contribution instructions, which can help you get started with the source code library faster.
Pull Request:
The following contributors make the component library better, thanks to everyone who contributed to Axe!
In order of contribution time, thanks:
axe-ui is a completely open source and free project. To help developers more conveniently use and participate in contributions, we have created a WeChat communication group. If you have any questions about use, development, etc., please ask questions in the group.
There are several ways to join:
Read the document "Add to Axe-ui"
Search for QQ group to join: 762096000 [You can scan the WeChat QR code below first. If it expires, then enter this group. I will bring you into the WeChat communication group. 】
WeChat communication group: (If it expires, you can contact us through the WeChat official account or QQ group)
MIT