Skip to content

Commit ccd6e74

Browse files
authored
Create main.ts
1 parent ea17285 commit ccd6e74

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/main.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import '@picocss/pico';
2+
import './css/style.scss';
3+
4+
import { createApp } from 'vue';
5+
import { createPinia } from 'pinia';
6+
import App from './App.vue';
7+
import { i18n } from './i18n';
8+
9+
const app = createApp(App);
10+
11+
app.use(createPinia());
12+
app.use(i18n);
13+
14+
app.mount('#app');

0 commit comments

Comments
 (0)