Skip to content
Snippets Groups Projects
Verified Commit cae1be6a authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

[Refactor] Break import lines

parent 5c3ac954
No related branches found
No related tags found
1 merge request!1123Resolve "Finalise Vuetify app as SPA"
......@@ -49,13 +49,27 @@ AleksisVue.install = function (Vue, options) {
* Register all global components that shall be reusable by apps.
*/
Vue.$registerGlobalComponents = function () {
Vue.component("message-box", () => import("../components/generic/MessageBox.vue"));
Vue.component("small-container", () => import("../components/generic/BackButton.vue"));
Vue.component("back-button", () => import("../components/generic/BackButton.vue"));
Vue.component("avatar-clickbox", () => import("../components/generic/AvatarClickbox.vue"));
Vue.component("detail-view", () => import("../components/generic/DetailView.vue"));
Vue.component("list-view", () => import("../components/generic/ListView.vue"));
Vue.component("button-menu", () => import("../components/generic/ButtonMenu.vue"));
Vue.component("message-box", () =>
import("../components/generic/MessageBox.vue")
);
Vue.component("small-container", () =>
import("../components/generic/BackButton.vue")
);
Vue.component("back-button", () =>
import("../components/generic/BackButton.vue")
);
Vue.component("avatar-clickbox", () =>
import("../components/generic/AvatarClickbox.vue")
);
Vue.component("detail-view", () =>
import("../components/generic/DetailView.vue")
);
Vue.component("list-view", () =>
import("../components/generic/ListView.vue")
);
Vue.component("button-menu", () =>
import("../components/generic/ButtonMenu.vue")
);
};
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment