Skip to content
Snippets Groups Projects
Commit 4539ba70 authored by Julian's avatar Julian
Browse files

Create PersonOverview component

parent ed73939a
No related branches found
No related tags found
2 merge requests!1123Resolve "Finalise Vuetify app as SPA",!1066Translations update from Weblate
<template>
</template>
<script>
export default {
name: "PersonOverview",
props: {
id: {
type: String,
required: false,
default: null,
}
}
}
</script>
<style scoped>
</style>
......@@ -83,8 +83,9 @@ const routes = [
},
{
path: "/persons/:id(\\d+)/",
component: () => import("./components/LegacyBaseTemplate.vue"),
component: () => import("./components/person/PersonOverview.vue"),
name: "core.personById",
props: true,
},
{
path: "/persons/:id(\\d+)/edit/",
......@@ -465,7 +466,7 @@ const routes = [
// STOP IMPERSONATION FIXME
{
path: "/person/",
component: () => import("./components/LegacyBaseTemplate.vue"),
component: () => import("./components/person/PersonOverview.vue"),
name: "core.person",
meta: {
inAccountMenu: true,
......
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