FEAT => 本次更新项目为:

基础通信搞定了
This commit is contained in:
超级老白兔
2025-08-01 16:29:34 +08:00
parent 325d53cad6
commit fddda27ca8
11 changed files with 1179 additions and 41 deletions

View File

@@ -1,13 +1,19 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Nkebao Base</title>
<style>html{font-size:16px;}</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Nkebao Base</title>
<style>
html {
font-size: 16px;
}
</style>
<!-- 引入 uni-app web-view SDK必须 -->
<script src="./websdk.js"></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>