13 lines
317 B
TypeScript
13 lines
317 B
TypeScript
import { createApp } from "vue";
|
|
import Root from "./Root.vue";
|
|
|
|
import "timi-web/style.css";
|
|
import "tdesign-mobile-vue/es/style/index.css";
|
|
import { axios, VPopup } from "timi-web";
|
|
|
|
axios.defaults.baseURL = "http://localhost:8091";
|
|
|
|
const app = createApp(Root);
|
|
app.directive("popup", VPopup);
|
|
app.mount("#root");
|