mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 14:17:22 +01:00
* extract inventoryDrawer from market * show scrollbar only if needed * extract featuredItemsHeader / pinUtils * extract pageLayout * extract layoutSection / filterDropdown - fix sortByNumber * rollback sortByNumber order-fix * move equipment lists out of the layout-section (for now) * refactor sellModal * extract checkbox * extract equipment section * extract category row * revert scroll - remove sellModal item template * fix(lint): commas and semis * Created category item component (#10613) * extract filter sidebar * fix gemCount - fix raising the item count if the item wasn't previously owned * fixes #10659 * remove unneeded method
22 lines
578 B
Vue
22 lines
578 B
Vue
<template lang="pug">
|
|
.row
|
|
secondary-menu.col-12
|
|
router-link.nav-link(:to="{name: 'market'}", exact) {{ $t('market') }}
|
|
router-link.nav-link(:to="{name: 'quests'}") {{ $t('quests') }}
|
|
router-link.nav-link(:to="{name: 'seasonal'}") {{ $t('titleSeasonalShop') }}
|
|
router-link.nav-link(:to="{name: 'time'}") {{ $t('titleTimeTravelers') }}
|
|
.col-12
|
|
router-view
|
|
</template>
|
|
|
|
<script>
|
|
import SecondaryMenu from 'client/components/secondaryMenu';
|
|
|
|
export default {
|
|
components: {
|
|
SecondaryMenu,
|
|
},
|
|
methods: {},
|
|
};
|
|
</script>
|