<template> <uv-load-more :status="props.status" /> </template> <script setup> import { ref } from "vue"; const props = defineProps({ status: { type: String, default: "more", }, }); // const status = ref('more') </script>