Add PrimeVue and Select component
This commit is contained in:
parent
70032e1b11
commit
2028955820
4 changed files with 82 additions and 9 deletions
|
|
@ -2,9 +2,15 @@ import { createApp } from "vue";
|
|||
import "./assets/css/index.css";
|
||||
import App from "./App.vue";
|
||||
import { createPinia } from "pinia";
|
||||
import PrimeVue from "primevue/config";
|
||||
import Select from "primevue/select";
|
||||
|
||||
const app = createApp(App);
|
||||
const pinia = createPinia();
|
||||
|
||||
app.use(pinia);
|
||||
app.use(PrimeVue, {
|
||||
unstyled: true
|
||||
});
|
||||
app.component('Select', Select);
|
||||
app.mount("#app");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue