完成 微前端拆分 提交遗漏文件
This commit is contained in:
17
front-end/app-product/src/App.tsx
Normal file
17
front-end/app-product/src/App.tsx
Normal 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>
|
||||
</>
|
||||
)
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user