31 lines
582 B
HTML
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> |