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");