#12 feat(Compra): add compra administrativa.

This commit is contained in:
2025-03-08 18:04:45 -05:00
parent a4dd8f98d8
commit 5860411753
3 changed files with 362 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<template>
<div>
<CodeDialog @code-verified="(verified) => showComponent = verified"/>
</div>
<AdminPurchase v-if="showComponent"/>
</template>
<script >
import CodeDialog from '../components/CodeDialog.vue'
export default {
data() {
return {
showComponent: false,
}
},
components: { CodeDialog },
methods: {},
}
</script>