Skip to content

hw1240230669/axe-ui

 
 

Repository files navigation


基于vue-next的一套PC端前端UI组件库

常用链接

安装

npm install axe-ui -S

快速使用

全局引入:

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')

本组件支持按需导入。你也可以像下边这样,单独导入需要的组件:

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')

浏览器支持

  • 现代浏览器
  • IE 11+

开发文档

更新日志

release notes

参与贡献

在拉取代码前请先查看我们的贡献文档

特别感谢

下面的贡献者让组件库变得更好,感谢所有为Axe做出贡献的人!

以贡献时间为序,感谢:

-Otto

加入我们

《加入axe-ui》

LICENSE

MIT

About

基于vue-next的一套PC端UI组件库

Resources

License

Contributing

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 43.1%
  • SCSS 20.7%
  • CSS 16.5%
  • JavaScript 10.3%
  • Vue 7.9%
  • Shell 0.8%
  • Makefile 0.7%