Files
habitica/website/client/components/social/index.vue
Matteo Pagliazzi dc8598ae81 Client: Guilds Discovery (#8529)
* wip: add guilds discovery page

* add public guilds page

* fix and add tests for the groups utilities mixin
2017-03-03 19:38:17 +01:00

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>