client: reorganize files, router and add inventory skeleton

This commit is contained in:
Matteo Pagliazzi
2017-01-17 19:45:27 +01:00
parent e2b06161e1
commit 563f40e4b7
10 changed files with 95 additions and 76 deletions

View 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>