Introduce group basic federation, event new page and notifications
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
@@ -1,18 +1,20 @@
|
||||
<template>
|
||||
<ul>
|
||||
<SettingMenuSection v-for="section in menuValue" :key="section.title" :menu-section="section" />
|
||||
</ul>
|
||||
<ul>
|
||||
<SettingMenuSection v-for="section in menuValue" :key="section.title" :menu-section="section" />
|
||||
</ul>
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import { Component, Prop, Vue } from 'vue-property-decorator';
|
||||
import SettingMenuSection from '@/components/Settings/SettingMenuSection.vue';
|
||||
import { ISettingMenuSection } from '@/types/setting-menu.model';
|
||||
import { Component, Prop, Vue } from "vue-property-decorator";
|
||||
import SettingMenuSection from "@/components/Settings/SettingMenuSection.vue";
|
||||
import { ISettingMenuSection } from "@/types/setting-menu.model";
|
||||
@Component({
|
||||
components: { SettingMenuSection },
|
||||
})
|
||||
export default class SettingsMenu extends Vue {
|
||||
@Prop({ required: true, type: Array }) menu!: ISettingMenuSection[];
|
||||
|
||||
get menuValue() { return this.menu; }
|
||||
get menuValue() {
|
||||
return this.menu;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user