Skip to content

Commit ae040e3

Browse files
author
shangbin
committed
Merge branch 'vue3' into antd-vue3
2 parents 1eaacfb + ba57524 commit ae040e3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+4966
-1867
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# LCG-VCC
1+
# VCC
22

3-
VCC是Low Code Generator中独立的Vue组件代码编辑器。可以独立运行。
3+
VCC(Vue Compontent Creator)是Low Code Generator中独立的Vue组件代码编辑器。可以独立运行。
44

55
**通过它可以通过拖拽快速完成Vue组件代码骨架的搭建。详见后文视频介绍链接。**
66

7-
> 点击这里快速预览效果:[https://vcc.sahadev.tech/](https://vcc.sahadev.tech/)
7+
> 点击这里快速预览效果:[https://vcc.sahadev.tech/](https://vcc.sahadev.tech/) 当前已经升级至Vue3 + Vite。
88
99
#### 使用示例
1010
##### 示例1
@@ -101,9 +101,9 @@ new Vue({
101101
npm i
102102
```
103103

104-
再进行启动:
104+
再进行启动(Vite):
105105
```
106-
npm run serve
106+
npm run dev
107107
```
108108

109109
运行完成后,就可以访问[http://localhost:8008/](http://localhost:8008/)预览效果了.

index.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" href="/favicon.ico" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>拖拽式Vue组件代码生成编辑器(VCC)</title><!-- Place this tag in your head or just before your close body tag. -->
8+
<script async defer src="https://buttons.github.io/buttons.js"></script>
9+
</head>
10+
11+
<style type="text/css">
12+
html, body {
13+
height: 100%;
14+
margin: 0;
15+
}
16+
17+
</style>
18+
19+
<body>
20+
<div id="app" style="height:100%;"></div>
21+
<script type="module" src="/src/main.js"></script>
22+
</body>
23+
</html>

0 commit comments

Comments
 (0)