feat: lesson pagination

This commit is contained in:
Jannat Patel
2023-12-18 19:17:17 +05:30
parent 372425bed2
commit 5928b8e5f9
7 changed files with 35 additions and 16 deletions

View File

@@ -0,0 +1,13 @@
<template>
<div class="h-screen">
this is a batch
</div>
</template>
<script setup>
const props = defineProps({
batchName: {
type: String,
required: true,
},
})
</script>