mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-01 19:50:37 +00:00
19 lines
437 B
Vue
19 lines
437 B
Vue
|
|
<template lang="pug">
|
||
|
|
.row
|
||
|
|
.sixteen.wide.column
|
||
|
|
.ui.secondary.menu
|
||
|
|
router-link.item(:to="{name: 'inventory'}")
|
||
|
|
span(v-once) {{ $t('inventory') }}
|
||
|
|
router-link.item(:to="{name: 'equipment'}")
|
||
|
|
span(v-once) {{ $t('equipment') }}
|
||
|
|
router-link.item(:to="{name: 'stable'}")
|
||
|
|
span(v-once) {{ $t('stable') }}
|
||
|
|
|
||
|
|
.sixteen.wide.column
|
||
|
|
router-view
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
};
|
||
|
|
</script>
|