20 lines
474 B
JavaScript
20 lines
474 B
JavaScript
import { createApp } from "vue";
|
|
import { createPinia } from "pinia";
|
|
|
|
import "./style.css";
|
|
import ElementPlus from "element-plus";
|
|
import "element-plus/dist/index.css";
|
|
import Vue3Marquee from "vue3-marquee";
|
|
import App from "./App.vue";
|
|
const pinia = createPinia();
|
|
|
|
setTimeout(() => {
|
|
window.location.reload();
|
|
}, 24 * 60 * 60 * 1000);
|
|
|
|
const app = createApp(App);
|
|
app.use(pinia);
|
|
app.use(ElementPlus);
|
|
app.use(Vue3Marquee, { name: "ScrollText" });
|
|
app.mount("#app");
|