mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-04 01:29:21 +00:00
20 lines
498 B
Vue
20 lines
498 B
Vue
|
|
<template lang="pug">
|
||
|
|
.row
|
||
|
|
secondary-menu.col-12
|
||
|
|
router-link.nav-link(:to="{name: 'contributors'}", exact, :class="{'active': $route.name === 'contributors'}") {{ $t('hallContributors') }}
|
||
|
|
router-link.nav-link(:to="{name: 'patrons'}", :class="{'active': $route.name === 'patrons'}") {{ $t('hallPatrons') }}
|
||
|
|
|
||
|
|
.col-12
|
||
|
|
router-view
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import SecondaryMenu from 'client/components/secondaryMenu';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
components: {
|
||
|
|
SecondaryMenu,
|
||
|
|
},
|
||
|
|
};
|
||
|
|
</script>
|