75 lines
2.4 KiB
Markdown
75 lines
2.4 KiB
Markdown
|
|
<p align="center">
|
|
<a href="http://www.layui.com">
|
|
<img src="https://sentsin.gitee.io/res/images/layui/layui.png" alt="layui" width="360">
|
|
</a>
|
|
</p>
|
|
<p align="center">
|
|
A component library for Vue 3 base on layui
|
|
</p>
|
|
|
|
<p align="center">
|
|
<a href="https://www.npmjs.com/package/layui"><img src="https://img.shields.io/npm/v/layui.svg?sanitize=true" alt="Version"></a>
|
|
<a href="https://www.npmjs.com/package/layui"><img src="https://img.shields.io/npm/l/layui.svg?sanitize=true" alt="License"></a>
|
|
<a href="https://travis-ci.org/sentsin/layui"><img alt="Build Status" src="https://img.shields.io/travis/sentsin/layui/master.svg"></a>
|
|
<a href="https://coveralls.io/r/sentsin/layui?branch=master"><img alt="Test Coverage" src="https://img.shields.io/coveralls/sentsin/layui/master.svg"></a>
|
|
<!--<a href="https://saucelabs.com/beta/builds/7e6196205e4f492496203388fc003b65"><img src="https://saucelabs.com/buildstatus/layui" alt="Build Status"></a>-->
|
|
</p>
|
|
|
|
<!--
|
|
<p align="center">
|
|
<a href="https://saucelabs.com/beta/builds/7e6196205e4f492496203388fc003b65"><img src="https://saucelabs.com/browser-matrix/layui.svg" alt="Browser Matrix"></a>
|
|
</p>
|
|
-->
|
|
|
|
---
|
|
|
|
![输入图片说明](https://images.gitee.com/uploads/images/2021/0930/134403_3f460375_4835367.png "屏幕截图.png")
|
|
|
|
|
|
## 快速上手
|
|
|
|
获得 layui-vue 你只需要使用 npm 引入下述文件:
|
|
|
|
```
|
|
npm install @layui/layui-vue
|
|
```
|
|
|
|
在 main.ts 中:
|
|
|
|
```js
|
|
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
import Layui from 'layui-vue'
|
|
import 'layui-vue/lib/layui.css'
|
|
|
|
const app = createApp(App)
|
|
app.use(Layui)
|
|
app.mount('#app')
|
|
```
|
|
|
|
这是一个基本的入门页面:
|
|
|
|
```html
|
|
<template>
|
|
<lay-button>默认按钮</lay-button>
|
|
<lay-button type="primary">重要按钮</lay-button>
|
|
</template>
|
|
|
|
```
|
|
|
|
## [阅读文档](http://www.layui.com/)
|
|
从现在开始,尽情地拥抱 layui 吧!但愿她能成为你长远的开发伴侣,化作你方寸屏幕前的亿万字节!
|
|
|
|
## 使用趋势
|
|
|
|
[![Giteye chart](https://chart.giteye.net/gitee/Jmysy/layui-vue/54GMVA5A.png)](https://giteye.net/chart/54GMVA5A)
|
|
|
|
## 贡献者
|
|
> 大概是因为 layui 让开发者变得更懒,所以贡献者才这么少?
|
|
> 好的,姑且就这样认为吧。
|
|
|
|
[![Giteye chart](https://chart.giteye.net/gitee/Jmysy/layui-vue/NPJNE48U.png)](https://giteye.net/chart/NPJNE48U)
|
|
|
|
## 相关
|
|
[官网](http://www.layui.com/)、[更新日志](http://www.layui.com/doc/base/changelog.html) |