Files
DDDMicroFrontend/front-end/app-shared/src/App.tsx
2025-09-29 05:07:42 +08:00

24 lines
850 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { defineComponent, onMounted } from 'vue'
export default defineComponent({
setup() {
onMounted({})
return () => (
<>
<div class="order-federation-placeholder">
<h2>-</h2>
<p>
</p>
{/*<h2>本模块包含的功能:</h2>*/ }
{/*<ul>*/ }
{/* <li>1获取商品首页的数据和展示</li>*/ }
{/* <li>2点击视频进入详情页</li>*/ }
{/*</ul>*/ }
{/*<p></p>*/ }
</div>
</>
)
}
})