Files
common4web/examples/main.ts
2025-11-05 15:21:23 +08:00

11 lines
290 B
TypeScript

import { createApp } from "vue";
import Root from "./Root.vue";
import common4Web, { axios, VPopup } from "common4web"; // 本地开发
axios.defaults.baseURL = "http://localhost:8091";
const app = createApp(Root);
app.use(common4Web);
app.directive("popup", VPopup);
app.mount("#root");