1 Star 21 Fork 3

快乐两小时/Layui App Exp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.html 957 Bytes
一键复制 编辑 原始数据 按行查看 历史
快乐两小时 提交于 2024-11-21 17:17 . 重构:app
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Layui 单页面</title>
<link rel="stylesheet" href="/layui/css/layui.css">
<script src="/layui/layui.js"></script>
</head>
<body>
<div id="app"></div>
<script>
layui.config({ base: "model/" })
.use(["app"], function () {
let app = layui.app
app.init({
"component": "/component", // 组件文件夹
"middleware": [ // 中间件
"/middleware/test.js"
],
"route": [
{ name: "home", path: "/", page: "/src/home.html" },
{ name: "about", path: "/about", page: "/src/about.html" },
] // 路由设置
})
})
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/kllxs_admin/layui-app-exp.git
[email protected]:kllxs_admin/layui-app-exp.git
kllxs_admin
layui-app-exp
Layui App Exp
master

搜索帮助