designtopack/src/main.js

19 lines
441 B
JavaScript
Raw Normal View History

2024-07-10 16:10:33 +02:00
import { createApp } from "vue";
2024-09-02 14:31:14 +02:00
import "./assets/css/index.css";
2024-07-10 16:10:33 +02:00
import App from "./App.vue";
import { createPinia } from "pinia";
2024-09-10 16:23:09 +02:00
import PrimeVue from "primevue/config";
import Select from "primevue/select";
2024-09-17 17:03:13 +02:00
import { router } from "./router/router.js";
2024-07-10 16:10:33 +02:00
const app = createApp(App);
const pinia = createPinia();
2024-07-10 18:43:46 +02:00
app.use(pinia);
2024-09-10 16:23:09 +02:00
app.use(PrimeVue, {
2024-09-17 17:03:13 +02:00
unstyled: true,
2024-09-10 16:23:09 +02:00
});
2024-09-17 17:03:13 +02:00
app.use(router);
app.component("Select", Select);
2024-07-10 18:43:46 +02:00
app.mount("#app");