mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-31 23:11:15 +00:00
17 lines
336 B
Vue
17 lines
336 B
Vue
|
|
<template lang="pug">
|
||
|
|
.row
|
||
|
|
.sixteen.wide.column
|
||
|
|
.ui.secondary.menu
|
||
|
|
router-link.item(:to="{name: 'tavern'}")
|
||
|
|
span(v-once) {{ $t('tavern') }}
|
||
|
|
router-link.item(:to="{name: 'inbox'}")
|
||
|
|
span(v-once) {{ $t('inbox') }}
|
||
|
|
|
||
|
|
.sixteen.wide.column
|
||
|
|
router-view
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
};
|
||
|
|
</script>
|