-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
44 lines (41 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/main.css" />
<script type="text/javascript" src="./lib/paper-full.js"></script>
<title>svg2step</title>
</head>
<body>
<canvas id="canvas_1" resize></canvas>
<div class="panel-left">
<div class="ui-group" id="data">
<div class="container">
<button id="btn" class="ui-button btn-savefile" @click="saveAsFile"></button>
</div>
<div class="container">
<form>
<input type="file" id="file" />
</form>
</div>
</div>
</div>
<!-- <div class="coffee">
<script
data-name="BMC-Widget"
data-cfasync="false"
src="https://cdnjs.buymeacoffee.com/1.0.0/widget.prod.min.js"
data-id="cog.ooo"
data-description="Support me on Buy me a coffee!"
data-message="Thank you for using #svg2step. You can buy me a cup of coffee from here."
data-color="#26B0A1"
data-position="Right"
data-x_margin="18"
data-y_margin="18"
></script>
</div> -->
<script type="module" src="./script.js"></script>
</body>
</html>