Files
LiteRequest/src/main.ts
2025-12-01 07:02:21 -04:00

9 lines
193 B
TypeScript

import { createApp } from "vue";
import { createPinia } from "pinia";
import "./style.css";
import App from "./App.vue";
const app = createApp(App);
app.use(createPinia());
app.mount("#app");