script[setup]: layouts/tabular (#18460)

This commit is contained in:
Rijk van Zanten
2023-05-03 12:34:23 -04:00
committed by GitHub
parent 81f81666a1
commit f8c52a2d02

View File

@@ -6,21 +6,18 @@
</transition>
</template>
<script lang="ts" setup>
defineProps<{
itemCount?: number;
showingCount: string;
}>();
</script>
<script lang="ts">
import { defineComponent } from 'vue';
export default defineComponent({
inheritAttrs: false,
props: {
itemCount: {
type: Number,
default: null,
},
showingCount: {
type: String,
required: true,
},
},
});
</script>