first commit

This commit is contained in:
2018-10-15 15:21:18 +08:00
commit a60faa1cbd
9 changed files with 5506 additions and 0 deletions

31
index.html Normal file
View File

@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html>
<link rel="stylesheet" type="text/css" href="../src/style/style.css" />
<head>
<meta charset="utf-8">
<title>webpack demo</title>
</head>
<body>
<div id='app'>
<table id='table'></table>
<div class='sidebar'>
<label>列数</label> <input id='totalCol' type="text" value=10> <br>
<label>行数</label> <input id='totalRow' type="text" value=10>
<button id='submitRowCol'>创建表格</button>
<div id='cellInfo'>
</div>
</div>
</div>
</body>
</html>