From e2147e58687074f447320e142f33491c8b67562a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=80=81=E5=A4=A7=E5=93=A5?= Date: Fri, 29 Apr 2022 16:02:52 +0800 Subject: [PATCH] add Chinese README --- README.zh.md | 78 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 README.zh.md diff --git a/README.zh.md b/README.zh.md new file mode 100644 index 00000000..b43edca6 --- /dev/null +++ b/README.zh.md @@ -0,0 +1,78 @@ +## 介绍 + +

+ Version + License + Build Status + Test Coverage +

+ +**[🔶 探索文档 »](http://www.layui-vue.com)** **[加入我们](https://jq.qq.com/?_wv=1027&k=ffiUQgnE)** + +一个基于 Layui 和 Vue 的企业级 UI 组件。 + +**在代码沙箱运行** + +[![Edit layui-vue](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/11mvy) + +## 功能 + +你可以用layui vue做的一些事情: + +* 使用安装脚本编写组件 +* 多达 60 个高品质组件 +* 提供 Axure 设计资源 +* 支持主题定制 +* 支持国际化 + +## 开始使用 + +使用 npm 安装 + +```bash +npm i @layui/layui-vue +``` +使用前需要将layui vue挂载到vue并引入index.css样式文件 + +``` +import App from './App.vue' +import { createApp } from 'vue' +import layui from '@layui/layui-vue' +import '@layui/layui-vue/lib/index.css' + +createApp(App).use(layui).mount('#app') +``` + +我们在[网站](http://layui-vue.pearadmin.com)上有几个例子。这是第一个让您入门的方法: + +``` + +``` + +## 反馈 + +欢迎在[提交问题](https://github.com/layui-vue/layui-vue/issues/new)上向我们反馈。欢迎功能请求。如果您想贡献,请查看[快速指南](./CONTRIBUTING.md)! + +如果您有什么想聊的,请随时加入我们的[Gitter chat](https://gitter.im/layui-vue/community)! + +## 构建过程 + +- `build` 打包组件库 + +请看一下[贡献指南](./CONTRIBUTING.md),以获得关于如何构建应用程序的详细过程以及排除故障的信息。 + +## 贡献者 + +这个项目遵循[所有贡献者](https://github.com/layui-vue/layui-vue/graphs/contributors)规范,感谢这些[出色的贡献者](https://github.com/layui-vue/layui-vue/graphs/contributors)。 + + + + + +## 开源许可 + +Layui vue是基于[MIT协议](https://opensource.org/licenses/MIT)提供。 \ No newline at end of file