mirror of
https://github.com/layui/layui.git
synced 2026-02-09 10:19:20 +08:00
28 lines
641 B
HTML
28 lines
641 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Dev - layui</title>
|
|
<link href="../assets/dist/css/layui.css" rel="stylesheet" />
|
|
<link href="../assets/modules/test/test.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module">
|
|
import {
|
|
layui,
|
|
lay,
|
|
componentBuilder,
|
|
layer,
|
|
} from '../assets/dist/layui.esm.js';
|
|
|
|
layer.alert(`Hello Layui ${layui.v}.`, {
|
|
shade: false,
|
|
});
|
|
|
|
console.log(layui);
|
|
</script>
|
|
</body>
|
|
</html>
|