UNPKG

vva-cli

Version:

A CLI of Vue 3 and Typescript and Element-plus in Vite

10 lines (8 loc) 292 B
import "element-plus/dist/index.css"; import "@/assets/styles/index.scss"; import { createApp } from "vue"; import App from "@/App.vue"; import { router } from "@/route/index"; import i18n from "@/language/i18n"; const app = createApp(App); app.use(router).use(i18n).mount("#app");