37 lines
543 B
HTML
37 lines
543 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='designer'>
|
|
|
|
</div>
|
|
<div id='app'>
|
|
|
|
<table id='table'></table>
|
|
|
|
|
|
</div>
|
|
<div id='cntnr'>
|
|
<ul id='items'>
|
|
<li id='delete-table'>删除表格</li>
|
|
<li id='delete-current-row'>删除当前行</li>
|
|
<li id='insert-top-row'>上插入行</li>
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html> |