data dari api

This commit is contained in:
2025-06-04 08:54:26 +07:00
parent 49770ba9f0
commit 3b288fd861
13 changed files with 385 additions and 36 deletions

View File

@@ -2,7 +2,7 @@
import { ref, watch, defineProps } from 'vue';
const props = defineProps({
stateValue: { type: Boolean, required: true }
stateValue: { type: Boolean, required: true },
});
const isActive = ref(props.stateValue);