FlowPacs/yudao-ui-admin-vue3/use.md
2022-11-23 09:46:26 +08:00

33 lines
1.7 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 注意事项
- 项目路径请不要使用中文命名!!!会造成解析乱码!!!请使用全英文路径!!!全英文路径!!!全英文路径!!!
- node >=16 , pnpm >=7非node16+ pnpm 7+ 安装问题不予解决
- 开发建议使用 [谷歌浏览器-开发者版](https://www.google.cn/intl/zh-CN/chrome/dev/) 不支持 IE\QQ 等浏览器
- 本框架使用 TypeScript 简称ts和java的类型差不多为了简化没过多使用 type
- 本框架使用 Vue3.2 + setup语法糖请自行学习相关内容
- [点击查看为什么Vue3.2什么是setupVite为什么第一次加载速度慢](https://www.baidu.com)
- idea 怎么开发? 不知道。
- 启动方式详见[README.md](./README.md)
## 简单使用
- 目录结构与 vue2 版本基本保持一致
- 一个页面(以post 岗位管理 为例)由3部分组成
```bash
接口 /src/api/system/post/index.ts
页面和crud schemas /src/views/system/post/ [index.vue | post.data.ts]
```
- 其中api内index.ts 与 vue2 基本一致只不过axios封装了get post put delete upload download 等方法不用写method: 'get' 了
- views中index.vue 与 vue2 基本一致本框架使用了vxe-table并封装了Search Table Form Descriptions等组件当然也继续支持vue2的写法
- post.data.ts 中主要是表单校验 rules 和表单 crudSchemas 通过修改crudSchemas 就可以控制增删改查的字段、输入框还是下拉框等等
- 本框架集成了国际化,不需要的话可以自己想办法移除,使用方法如下
```bash
import { useI18n } from '@/hooks/web/useI18n'
const { t } = useI18n()
t('common.createTime')
并在src/locales 增加相应的中英文
```