merge
This commit is contained in:
parent
0667120de5
commit
1089938956
10 changed files with 122 additions and 77 deletions
|
|
@ -4,13 +4,15 @@ import App from "./App.vue";
|
|||
import { createPinia } from "pinia";
|
||||
import PrimeVue from "primevue/config";
|
||||
import Select from "primevue/select";
|
||||
import { router } from "./router/router.js";
|
||||
|
||||
const app = createApp(App);
|
||||
const pinia = createPinia();
|
||||
|
||||
app.use(pinia);
|
||||
app.use(PrimeVue, {
|
||||
unstyled: true
|
||||
unstyled: true,
|
||||
});
|
||||
app.component('Select', Select);
|
||||
app.use(router);
|
||||
app.component("Select", Select);
|
||||
app.mount("#app");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue