feat: auto load more search track results

This commit is contained in:
geoffrey45
2023-01-02 20:55:15 +03:00
committed by Mungai Njoroge
parent 1d03b21caf
commit 3d37cd59b3
4 changed files with 63 additions and 14 deletions
+12
View File
@@ -0,0 +1,12 @@
<template></template>
<script setup lang="ts">
import { onMounted } from "vue";
const props = defineProps<{
action: () => void;
}>();
onMounted(() => {
props.action();
});
</script>