coupon/front/src/main.ts
2026-05-11 16:35:26 +09:00

8 lines
171 B
TypeScript

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