star-horse-lowcode 2.6.5 → 2.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
```shell
|
|
5
5
|
在main.js中引入
|
|
6
6
|
import StarHorseLowCode from "star-horse-lowcode";
|
|
7
|
-
import "star-horse-lowcode/dist/index.css"
|
|
7
|
+
import "star-horse-lowcode/dist/assets/index.css"
|
|
8
8
|
|
|
9
9
|
const app = createApp(App);
|
|
10
10
|
app.use(StarHorseLowCode);
|
|
@@ -19,12 +19,15 @@ Node 版本 >20
|
|
|
19
19
|
插件已内置了Element-Plus 最新版本,无序额外引用,
|
|
20
20
|
此组件提供了对Element-Plus 官方组件的封装,
|
|
21
21
|
同时也提供了自定义的组件如:
|
|
22
|
-
cron
|
|
23
|
-
dialog-input
|
|
24
|
-
usercomp
|
|
25
|
-
page-select
|
|
22
|
+
cron Cron 表达式、
|
|
23
|
+
dialog-input 弹出选择器、
|
|
24
|
+
usercomp 动态组件、
|
|
25
|
+
page-select 下拉分页选择器、
|
|
26
26
|
等;具体描述待后期知识库完善后,可在知识库上进行查看。
|
|
27
|
-
|
|
27
|
+
此次发布只是低代码平台的核心组件库,后期会根据实际情况发布设计模块功能。
|
|
28
|
+
待后期知识库功能完善后将进行全面开源,敬请期待。
|
|
29
|
+
该组件右本人独立耗时4年开发完成(前端+后端),其中可能存在没测到的bug,不喜勿喷。
|
|
30
|
+
使用过程中遇到问题或提出你的宝贵意见可邮件至:l_1019@163.com
|
|
28
31
|
|
|
29
32
|
```
|
|
30
33
|
4. 完整示例(将此代码拷贝到新建.vue空文件)
|