mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
19 lines
444 B
Vue
19 lines
444 B
Vue
<template lang="pug">
|
|
.row
|
|
.sixteen.wide.column
|
|
.ui.secondary.menu
|
|
router-link.item(:to="{name: 'inventory'}", exact)
|
|
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> |