11 lines
290 B
TypeScript
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");
|