mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 15:17:25 +01:00
client: reorganize files, router and add inventory skeleton
This commit is contained in:
19
website/client/components/inventory/index.vue
Normal file
19
website/client/components/inventory/index.vue
Normal file
@@ -0,0 +1,19 @@
|
||||
<template lang="pug">
|
||||
.row
|
||||
.sixteen.wide.column
|
||||
.ui.secondary.menu
|
||||
router-link.item(:to="{name: 'inventory'}")
|
||||
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>
|
||||
Reference in New Issue
Block a user