mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 06:07:21 +01:00
* some stable work and faster less recompilation * user with zero tasks can use the app * wip work to show loading status of resources * revert changes to sync
19 lines
459 B
Vue
19 lines
459 B
Vue
<template lang="pug">
|
|
.row
|
|
.sixteen.wide.column
|
|
.ui.secondary.menu.center-content
|
|
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> |