mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
* wip: add guilds discovery page * add public guilds page * fix and add tests for the groups utilities mixin
19 lines
438 B
Vue
19 lines
438 B
Vue
<template lang="pug">
|
|
.row
|
|
.sixteen.wide.column
|
|
.ui.secondary.menu.center-content
|
|
router-link.item(:to="{name: 'tavern'}")
|
|
span(v-once) {{ $t('tavern') }}
|
|
router-link.item(:to="{name: 'guilds'}")
|
|
span(v-once) {{ $t('guilds') }}
|
|
router-link.item(:to="{name: 'inbox'}")
|
|
span(v-once) {{ $t('inbox') }}
|
|
|
|
.sixteen.wide.column
|
|
router-view
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
};
|
|
</script> |