完成 微前端拆分 提交遗漏文件

This commit is contained in:
编码猿
2025-09-18 01:52:30 +08:00
parent ca24ab9922
commit 3d0c69c98e
29 changed files with 4260 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
import { defineComponent } from 'vue'
import { RouterLink, RouterView } from "vue-router";
export default defineComponent({
setup() {
return () => (
<>
{/* 仅作占位,主应用加载联邦模块时不会显示此内容 */}
<div class="order-federation-placeholder">
<h2>/</h2>
<p></p>
<p></p>
</div>
</>
)
}
})