Add Multiselect component to setupComponents

This commit is contained in:
atamrakar 2026-01-07 09:35:49 +05:45
parent 706e430d7b
commit ce51078f65

View File

@ -1,4 +1,5 @@
import type { App } from "vue";
import Multiselect from "vue-multiselect";
import {
ContentLayout,
DateRange,
@ -25,6 +26,7 @@ const setupComponents = (app: App) => {
app.component("Towser", Towser);
app.component("Loader", Loader);
app.component("Wizard", Wizard);
app.component("Multiselect", Multiselect);
};
export default setupComponents;