Skip to content

Commit

Permalink
chore: update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
buqiyuan committed Dec 11, 2021
1 parent 39c61e3 commit 25df8fd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .env.production
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 只在开发模式中被载入
# 只在生产模式中被载入
ENV = 'production'

# base api
Expand Down
30 changes: 9 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
# vue3-antd-admin

> 即将基于 vue-cli5.x 重构整个前后端项目,完善后端权限控制细粒度,封装更多场景化组件...
> 基于 vue-cli5.x 重构整个前后端项目,完善后端权限控制细粒度,封装更多场景化组件...正在完善中
基于 vue-cli / vite2.x + vue3.x + antd-design-vue2.x + typescript4.x 的后台管理系统模板
基于 vue-cli5.x / vite2.x + vue3.x + antd-design-vue3.x + typescript4.x 的后台管理系统模板

- 账号:admin,密码:123456
- [在线预览](http://buqiyuan.gitee.io/vue3-antd-admin/)
- [API 文档](http://29135jo738.zicp.vip/api/v1/docs/)
- [后台地址](https://github.com/buqiyuan/nestjs-mysql-api)
- [后台地址](https://github.com/buqiyuan/nest-admin)
- [react 版 coding](https://github.com/buqiyuan/react-antd-admin)
- [vite 踩坑版](https://github.com/buqiyuan/vite-vue3-admin)
- [gitee 地址](https://gitee.com/buqiyuan/vue3-antd-admin)
Expand All @@ -16,8 +15,7 @@

安装项目根目录.vscode 推荐的插件,再安装 Volar,并禁用 Vetur,重启 vscode 即可。

> 使用了 Vue3.0 全家桶、ant-design-vue2.0 和 typescript4.0,实践 vue3.0 的新特性以及玩法,不得不说 vue3.0 的 Composition API 相比于 vue2.0 的 Options API
> 灵活很多,让我们可以灵活地组合组件逻辑,我们可以很轻松的使用 hooks 的形式去代替以前 mixins 等的写法。更多 hooks 可以参考[vueuse](https://vueuse.org/functions.html)
> 使用了 Vue3.0 全家桶、ant-design-vue2.0 和 typescript4.0,实践 vue3.0 的新特性以及玩法,不得不说 vue3.0 的 Composition API 相比于 vue2.0 的 Options API 灵活很多,让我们可以灵活地组合组件逻辑,我们可以很轻松的使用 hooks 的形式去代替以前 mixins 等的写法。更多 hooks 可以参考[vueuse](https://vueuse.org/functions.html)
## 克隆项目

Expand All @@ -35,23 +33,13 @@ yarn install
yarn --frozen-lockfile
```

### Compiles and hot-reloads for development
## 捐赠

```shell
yarn serve
```

### Compiles and minifies for production
如果你觉得这个项目对你有帮助,你可以帮作者买一杯咖啡表示支持!

```shell
yarn build
```

### Lints and fixes files

```shell
yarn lint
```
| 微信 | 支付宝 |
| :-: | :-: |
| ![donate](https://s4.ax1x.com/2021/12/11/oTU8NF.jpg) | ![donate](https://s4.ax1x.com/2021/12/11/oTatIS.jpg) |

## 感谢 JetBrains 免费的开源授权

Expand Down
4 changes: 2 additions & 2 deletions src/views/system/permission/user/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@
<Alert class="w-full" type="info" show-icon>
<template #message>
已选 {{ isCheckRows }} 项
<a @click="rowSelection.selectedRowKeys = []">取消选择</a>
<a-button type="link" @click="rowSelection.selectedRowKeys = []">取消选择</a-button>
</template>
</Alert>
</template>
<template #toolbar>
<a-button type="primary" @click="openUserModal({})"> <PlusOutlined /> 新增 </a-button>
<a-button type="success" :disabled="!isCheckRows" @click="openTransferUserModal({})">
<a-button type="success" :disabled="!isCheckRows" @click="openTransferUserModal">
<SwapOutlined /> 转移
</a-button>
<a-button
Expand Down

0 comments on commit 25df8fd

Please sign in to comment.