mirror of
https://github.com/directus/directus.git
synced 2026-02-12 11:55:13 -05:00
script[setup]: layouts/tabular (#18460)
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user