修改package.json的启动命令

This commit is contained in:
编码猿
2025-09-18 04:40:50 +08:00
parent 75c50d8c97
commit 064d368ae4
5 changed files with 21 additions and 14 deletions

View File

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