We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eea5e36 commit 8312ba1Copy full SHA for 8312ba1
README.md
@@ -38,13 +38,14 @@
38
39
## 前言
40
41
-该方案作为一套多功能的后台框架模板,适用于绝大部分的后台管理系统开发。基于 Vue3 + pinia,引用 Element Plus 组件库,方便开发。
+该方案作为一套多功能的后台框架模板,适用于绝大部分的后台管理系统开发。基于 Vue3 + pinia + typescript,引用 Element Plus 组件库,方便开发。实现逻辑简单,适合外包项目,快速交付。
42
43
## 功能
44
45
- [x] Element Plus
46
-- [x] vite
+- [x] vite 3
47
- [x] pinia
48
+- [x] typescript
49
- [x] 登录/注销
50
- [x] Dashboard
51
- [x] 表格
@@ -59,6 +60,7 @@
59
60
61
62
## 安装步骤
63
+> 因为使用vite3,node版本需要 14.18+
64
65
```
66
git clone https://github.com/lin-xin/vue-manage-system.git // 把模板下载到本地
@@ -87,7 +89,7 @@ vue.js 封装 sChart.js 的图表组件。访问地址:[vue-schart](https://gi
87
89
</div>
88
90
</template>
91
-<script setup>
92
+<script setup lang="ts">
93
import { ref } from 'vue';
94
import Schart from "vue-schart"; // 导入Schart组件
95
const options = ref({
0 commit comments