WIP: refs #6416 - refactor-InvoiceIn #196

Closed
jsegarra wants to merge 17 commits from 6416-refactor-InvoiceIn into dev
1 changed files with 18 additions and 0 deletions
Showing only changes of commit ce0a327f9b - Show all commits

View File

@ -0,0 +1,18 @@
<script setup>
import { useI18n } from 'vue-i18n';
const $props = defineProps({
columns: { type: Object, require: true, default: null },
rows: { type: Object, require: true, default: null },
});
const { t } = useI18n();
</script>
<template>
<QCard>
<slot name="header"></slot>
<slot name="body"></slot>
<slot name="footer"></slot>
</QCard>
</template>
<style lang="scss" scoped></style>