mirror of
https://github.com/layui/layui.git
synced 2026-02-09 02:09:18 +08:00
16 lines
484 B
HTML
16 lines
484 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>layui-example</title>
|
|
<link href="node_modules/layui/dist/css/layui.css" rel="stylesheet" />
|
|
</head>
|
|
<body class="layui-padding-3">
|
|
<button type="button" class="layui-btn">默认按钮</button>
|
|
|
|
<script src="node_modules/layui/dist/layui.js"></script>
|
|
<script src="./index.js"></script>
|
|
</body>
|
|
</html>
|