pinia prefix
This commit is contained in:
parent
b958dfad20
commit
6febfde058
10 changed files with 916 additions and 7907 deletions
|
|
@ -19,7 +19,7 @@ import { createPinia } from "pinia";
|
|||
// import './assets/main.css'
|
||||
|
||||
// Import GlobalFilters
|
||||
import filters from "./hooks/filters";
|
||||
import filters from "./plugins/filters";
|
||||
|
||||
const app = createApp(App);
|
||||
const pinia = createPinia();
|
||||
|
|
@ -54,7 +54,7 @@ app.use(
|
|||
//** Global Components */
|
||||
app.component(
|
||||
"data-table",
|
||||
defineAsyncComponent(() => import("./components/TableView.vue"))
|
||||
defineAsyncComponent(() => import("@/components/TableView.vue"))
|
||||
);
|
||||
app.component(
|
||||
"datepicker",
|
||||
|
|
@ -62,12 +62,12 @@ app.component(
|
|||
);
|
||||
app.component(
|
||||
"full-loader",
|
||||
defineAsyncComponent(() => import("./plugins/FullLoader.vue"))
|
||||
defineAsyncComponent(() => import("@/components/FullLoader.vue"))
|
||||
);
|
||||
|
||||
app.component(
|
||||
"selector",
|
||||
defineAsyncComponent(() => import("./components/Selector.vue"))
|
||||
defineAsyncComponent(() => import("@/components/Selector.vue"))
|
||||
);
|
||||
|
||||
app.config.globalProperties.$http = http;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue