Initial commit: yu-zhi-ran platform with automation integration

This commit is contained in:
lt
2026-04-19 14:05:09 +08:00
commit 3cb2df51c8
209 changed files with 80379 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>前端测试</title>
<script src="/static/vue.global.prod.js"></script>
<link rel="stylesheet" href="/static/element-plus.css" />
<script src="/static/element-plus.full.js"></script>
</head>
<body>
<div id="app">
<h1>测试页面</h1>
<p>Vue 已加载: {{ loaded }}</p>
<el-button type="primary">测试按钮</el-button>
</div>
<script>
const { createApp, ref } = Vue;
createApp({
setup() {
const loaded = ref(true);
return { loaded };
}
}).use(ElementPlus).mount('#app');
</script>
</body>
</html>