report-design-javascript/index.html
2018-10-15 15:21:18 +08:00

31 lines
582 B
HTML

<!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>