|
Lines 15-23
import vSelect from "vue-select";
Link Here
|
| 15 |
|
15 |
|
| 16 |
library.add(faPlus, faMinus, faPencil, faTrash, faSpinner); |
16 |
library.add(faPlus, faMinus, faPencil, faTrash, faSpinner); |
| 17 |
|
17 |
|
| 18 |
import App from "./components/ERM/Main.vue"; |
18 |
import App from "../components/ERM/Main.vue"; |
| 19 |
|
19 |
|
| 20 |
import { routes } from "./routes/erm"; |
20 |
import { routes } from "../routes/erm"; |
| 21 |
|
21 |
|
| 22 |
const router = createRouter({ |
22 |
const router = createRouter({ |
| 23 |
history: createWebHistory(), |
23 |
history: createWebHistory(), |
|
Lines 25-33
const router = createRouter({
Link Here
|
| 25 |
routes, |
25 |
routes, |
| 26 |
}); |
26 |
}); |
| 27 |
|
27 |
|
| 28 |
import { useMainStore } from "./stores/main"; |
28 |
import { useMainStore } from "../stores/main"; |
| 29 |
import { useVendorStore } from "./stores/vendors"; |
29 |
import { useVendorStore } from "../stores/vendors"; |
| 30 |
import { useAVStore } from "./stores/authorised_values"; |
30 |
import { useAVStore } from "../stores/authorised_values"; |
| 31 |
|
31 |
|
| 32 |
const pinia = createPinia(); |
32 |
const pinia = createPinia(); |
| 33 |
|
33 |
|