#69 feat(View): add reconciliation jar components.

This commit is contained in:
Mono Mono 2024-11-15 17:44:30 -05:00
parent b2756ac7ce
commit 6aca2007e0
3 changed files with 15 additions and 0 deletions

View File

@ -29,6 +29,7 @@
menuItems: [
{ title: 'Inicio', route: '/'},
{ title: 'Comprar', route:'/comprar'},
{ title: 'Cuadrar tarro', route: '/cuadrar_tarro'}
],
}),
watch: {

View File

@ -0,0 +1,7 @@
<template>
<v-container>
<v-toolbar>
<v-toolbar-title> Cuadre del Tarro </v-toolbar-title>
</v-toolbar>
</v-container>
</template>

View File

@ -0,0 +1,7 @@
<template>
<ReconciliationJar />
</template>
<script setup>
//
</script>