File tree 3 files changed +20
-6
lines changed 3 files changed +20
-6
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ VCC(Vue Compontent Creator)是 Low Code Generator 中独立的 Vue 组件代码
8
8
9
9
#### 使用示例
10
10
11
- 请移步至使用Demo:[ https://github.com/sahadev/vcc3-use-demo ] ( https://github.com/sahadev/vcc3-use-demo )
11
+ 请移步至使用 Demo:[ https://github.com/sahadev/vcc3-use-demo ] ( https://github.com/sahadev/vcc3-use-demo )
12
+
12
13
## 本地如何运行此项目
13
14
14
15
首先进行安装:
@@ -32,11 +33,17 @@ npm run dev
32
33
[ 【LCG 近期功能更新介绍-哔哩哔哩】https://b23.tv/SAHwVq ] ( https://b23.tv/SAHwVq )
33
34
34
35
### 说明文档
36
+
35
37
[ https://vcc3-docs.surge.sh/#/ ] ( https://vcc3-docs.surge.sh/#/ )
36
38
37
39
### 功能更新日志
38
- - 2022年03月16日 支持生成单页Html,支持Vue2以及Vue3,并支持一键部署至VCC服务器。
39
- - 2023年12月06日 更新Element组件库版本、更新Vue框架版本。
40
+
41
+ - 2022 年 03 月 16 日 支持生成单页 Html,支持 Vue2 以及 Vue3,并支持一键部署至 VCC 服务器。
42
+ - 2023 年 12 月 06 日 更新 Element 组件库版本、更新 Vue 框架版本。
43
+
44
+ ### 核心仓库
45
+
46
+ VCC 依赖于一个核心的代码转换库:[ vue-component-code-creater] ( https://github.com/sahadev/vue-component-code-creater ) ,通过这个库来完成 Vue 文件的解析和 Vue 文件的生成。如果需要更改核心实现,可通过此库提供的源码进行修改。
40
47
41
48
## 贡献
42
49
@@ -60,4 +67,4 @@ npm run dev
60
67
61
68
或者加群和大家一起讨论吧! 可以加我微信:SAHADEV-smile,我拉你入群。加我微信时请备注 VCC。
62
69
63
- 另外我也特别希望可以和大家一起做这个项目。这个项目目前主要面对的是前端开发者。后期可以面向后端开发者与产品与 UE。
70
+ 另外我也特别希望可以和大家一起做这个项目。这个项目目前主要面对的是前端开发者。后期可以面向后端开发者与产品与 UE。
Original file line number Diff line number Diff line change @@ -56,17 +56,21 @@ function parseHtml(htmlData) {
56
56
lastAccessStack . pop ( ) ;
57
57
currentAccessObject = lastAccessStack [ lastAccessStack . length - 1 ] ;
58
58
} ,
59
- onend ( ) {
59
+ onend ( ) {
60
60
resolve ( root ) ;
61
61
} ,
62
62
63
63
onerror ( error ) {
64
64
reject ( error ) ;
65
65
}
66
+ } , {
67
+ lowerCaseAttributeNames : false ,
68
+ lowerCaseTags : false ,
66
69
} ) ;
67
70
parser . write (
68
71
htmlData
69
72
) ;
73
+
70
74
parser . end ( ) ;
71
75
} )
72
76
}
Original file line number Diff line number Diff line change @@ -51,13 +51,16 @@ function parseHtml(htmlData) {
51
51
lastAccessStack . pop ( ) ;
52
52
currentAccessObject = lastAccessStack [ lastAccessStack . length - 1 ] ;
53
53
} ,
54
- onend ( ) {
54
+ onend ( ) {
55
55
resolve ( root ) ;
56
56
} ,
57
57
58
58
onerror ( error ) {
59
59
reject ( error ) ;
60
60
}
61
+ } , {
62
+ lowerCaseAttributeNames : false ,
63
+ lowerCaseTags : false ,
61
64
} ) ;
62
65
parser . write (
63
66
htmlData
You can’t perform that action at this time.
0 commit comments