Skip to content

Commit

Permalink
Merge pull request #29 from traPtitech/settingprimeVue
Browse files Browse the repository at this point in the history
primeVueインストールした
  • Loading branch information
oER4 authored Mar 12, 2024
2 parents 67a7950 + f1d4fa3 commit 6956f2f
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"@iconify/iconify": "^3.1.1",
"openapi-typescript-fetch": "^1.1.3",
"pinia": "^2.1.7",
"primevue": "^3.49.0",
"vue": "^3.4.19",
"vue-router": "^4.2.5"
},
Expand Down
14 changes: 14 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
import { createApp } from 'vue';
import { createPinia } from 'pinia';
import PrimeVue from 'primevue/config';
import 'primevue/resources/themes/aura-light-green/theme.css';
import router from './router';
import App from './App.vue';

import './index.scss';
import '@purge-icons/generated';

const app = createApp(App);

app.use(PrimeVue);
app.use(router);
app.use(createPinia());
app.mount('#app');

0 comments on commit 6956f2f

Please sign in to comment.