Skip to content
Snippets Groups Projects
Commit 0b381eb0 authored by Hangzhi Yu's avatar Hangzhi Yu
Browse files

Add routes when instantiating router object and fix incorporation of external app routes

parent a7dc1d93
No related branches found
No related tags found
2 merge requests!1123Resolve "Finalise Vuetify app as SPA",!1066Translations update from Weblate
......@@ -13,6 +13,7 @@ import VueI18n from "vue-i18n";
import messages from "./messages.json";
import dateTimeFormats from "./dateTimeFormats.js";
import routes from "./routes.js";
Vue.use(Vuetify);
......@@ -75,6 +76,7 @@ const apolloProvider = new VueApollo({
const router = new VueRouter({
mode: "history",
routes,
});
if (document.getElementById('sentry_settings') !== null) {
......
This diff is collapsed.
This diff is collapsed.
......@@ -14,11 +14,11 @@ function generateAppImporter(entrypoints) {
let code = "let appObjects = {};";
for (const appPackage of Object.keys(entrypoints)) {
let appName = appPackage.split(".").slice(-1)[0];
appName = appName.charAt(0).toUpperCase() + appName.substring(1);
let importAppName = appName.charAt(0).toUpperCase() + appName.substring(1);
code += `console.debug("Importing AlekSIS app entrypoint for ${appPackage}");\n`;
code += `import ${appName} from '${appPackage}';\n`;
code += `appObjects.push(${appName});\n`;
code += `import ${importAppName} from '${appPackage}';\n`;
code += `appObjects["${appName}"] = ${importAppName};\n`;
}
code += "export default appObjects;\n";
return code;
......
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