0
0
Fork 0

Tarjeta pago web sin contenido

This commit is contained in:
carlosfonseca 2024-01-31 08:56:19 -05:00
parent 7b3ff319d4
commit 9c351b6494
1 changed files with 15 additions and 1 deletions

View File

@ -1,3 +1,17 @@
<script setup>
import { useI18n } from 'vue-i18n';
const { t } = useI18n();
</script>
<template> <template>
<div class="flex justify-center">Customer web payment</div> <h5 class="flex justify-center label-color">
{{ t('globals.noResults') }}
</h5>
</template> </template>
<style lang="scss">
.label-color {
color: var(--vn-label);
}
</style>