refs #6416 feat: VnCard
This commit is contained in:
parent
147bbb5c44
commit
ce0a327f9b
|
@ -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>
|
Loading…
Reference in New Issue