-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
50 lines (48 loc) · 2.24 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>低代码引擎</title>
<link rel="stylesheet" href="/css/editor.css" />
<!-- 低代码引擎的页面主题样式,可以替换为 theme-lowcode-dark -->
<link
href="https://alifd.alicdn.com/npm/@alifd/[email protected]/variables.css"
rel="stylesheet"
/>
<link
href="https://alifd.alicdn.com/npm/@alifd/[email protected]/dist/next.var.min.css"
rel="stylesheet"
/>
<!-- 低代码引擎的页面框架样式 -->
<link
rel="stylesheet"
href="https://alifd.alicdn.com/npm/@alilc/[email protected]/dist/css/engine-core.css"
/>
<!-- 低代码引擎适配 vue 扩展的样式 -->
<link
rel="stylesheet"
href="https://unpkg.com/@cdlab996/lowcode-engine-ext-vue@latest/dist/css/engine-ext.css"
/>
<!-- React & ReactDOM -->
<script src="https://g.alicdn.com/code/lib/react/16.13.1/umd/react.production.min.js"></script>
<script src="https://g.alicdn.com/code/lib/react-dom/16.13.1/umd/react-dom.production.min.js"></script>
<!-- React 向下兼容,预防物料层的依赖 -->
<script src="https://g.alicdn.com/code/lib/prop-types/15.7.2/prop-types.js"></script>
<!-- lodash,低代码编辑器的依赖 -->
<script src="https://g.alicdn.com/platform/c/lodash/4.6.1/lodash.min.js"></script>
<!-- 日期处理包,Fusion Next 的依赖 -->
<script src="https://g.alicdn.com/mylib/moment/2.24.0/min/moment.min.js"></script>
<!-- Fusion Next 的主包,低代码编辑器的依赖 -->
<script src="https://g.alicdn.com/code/lib/alifd__next/1.26.19/next.min.js"></script>
<!-- 低代码引擎的主包 -->
<script src="https://alifd.alicdn.com/npm/@alilc/[email protected]/dist/js/engine-core.js"></script>
<!-- 低代码引擎适配 vue 扩展的主包 -->
<script src="https://unpkg.com/@cdlab996/lowcode-engine-ext-vue@latest/dist/js/engine-ext.js"></script>
</head>
<body>
<div id="lce-container"></div>
<script type="text/javascript" src="/js/editor.js"></script>
</body>
</html>