石墨仪设备 前端仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
578 B

6 months ago
6 months ago
6 months ago
6 months ago
  1. import "./assets/style/base.css";
  2. import "./assets/style/tailwind.css";
  3. import { createApp } from "vue";
  4. import { createPinia } from "pinia";
  5. import Vant from "vant";
  6. import ElementPlus from "element-plus";
  7. import "element-plus/dist/index.css";
  8. import App from "./App.vue";
  9. import router from "./router";
  10. import "vant/lib/index.css";
  11. const app = createApp(App);
  12. app.use(createPinia());
  13. app.use(router);
  14. app.use(Vant);
  15. app.use(ElementPlus);
  16. app.mount("#app");
  17. console.log("API HOST:", import.meta.env.VITE_API_HOST);
  18. console.log("API PORT:", import.meta.env.VITE_API_PORT);