no message

This commit is contained in:
kuaifan 2025-05-28 16:56:52 +08:00
parent bdb4014b94
commit 2ac9a59469
2 changed files with 18 additions and 0 deletions

17
public/empty.html Normal file
View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
<title>Empty Page</title>
</head>
<body>
<div class="container">
<h1>Welcome to the Empty Page</h1>
<p>This page is intentionally left empty.</p>
</div>
<script>
console.log("Empty page loaded.");
</script>
</body>
</html>

View File

@ -111,6 +111,7 @@ export default {
microApp.start({
'iframe': true,
'router-mode': 'state',
'iframeSrc': $A.mainUrl('empty.html'),
})
},