kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
28 wiersze
747 B
Vue
28 wiersze
747 B
Vue
<template>
|
|
<div class="main pusher" v-title="labels.moderation">
|
|
<nav class="ui secondary pointing menu" role="navigation" :aria-label="labels.secondaryMenu">
|
|
<router-link
|
|
class="ui item"
|
|
:to="{name: 'manage.moderation.domains.list'}"><translate>Domains</translate></router-link>
|
|
<router-link
|
|
class="ui item"
|
|
:to="{name: 'manage.moderation.accounts.list'}"><translate>Accounts</translate></router-link>
|
|
|
|
</nav>
|
|
<router-view :key="$route.fullPath"></router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
computed: {
|
|
labels() {
|
|
return {
|
|
moderation: this.$gettext("Moderation"),
|
|
secondaryMenu: this.$gettext("Secondary menu")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|