Files
habitica/website/client/components/inventory/index.vue
Matteo Pagliazzi 8805f81b96 Client/inventory WIP (#8527)
* 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
2017-03-03 15:40:21 +01:00

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>