Files
timi-web/examples/main.ts
2026-04-02 16:52:48 +08:00

8 lines
197 B
TypeScript

import { createApp } from "vue";
import Root from "./Root.vue";
import { VPopup } from "timi-web"; // 本地开发
const app = createApp(Root);
app.directive("popup", VPopup);
app.mount("#root");