mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 06:07:21 +01:00
* client: start working on Inventory/Items * i18n changes and fixes * initial displaying of eggs, food and potions + sorting * add missing files * remove comment * show food, eggs and potions * add label to dropdowns acting as select menus * popovers * move badge to slot and component if necessary, general refactor * fix quantity ordering * some special items, reorganize
19 lines
445 B
Vue
19 lines
445 B
Vue
<template lang="pug">
|
|
.row
|
|
secondary-menu.col-12
|
|
router-link.nav-link(:to="{name: 'items'}", exact) {{ $t('items') }}
|
|
router-link.nav-link(:to="{name: 'equipment'}") {{ $t('equipment') }}
|
|
router-link.nav-link(:to="{name: 'stable'}") {{ $t('stable') }}
|
|
.col-12
|
|
router-view
|
|
</template>
|
|
|
|
<script>
|
|
import SecondaryMenu from 'client/components/secondaryMenu';
|
|
|
|
export default {
|
|
components: {
|
|
SecondaryMenu,
|
|
},
|
|
};
|
|
</script> |