This repository has been archived on 2026-06-21. You can view files and clone it. You cannot open issues or pull requests or push a commit.
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");