Update file permissions for multiple files

This commit is contained in:
Eko Haryadi
2024-02-19 09:08:50 +07:00
parent 1750dd33df
commit 6c5e0fe763
239 changed files with 1433 additions and 928 deletions

1
src/components/Form/InputNumber.vue Normal file → Executable file
View File

@@ -22,7 +22,6 @@ const props = defineProps({
const emit = defineEmits(['update:timeValue'])
const timeValue = ref(1)
watch(timeValue, (newValue) => {
console.log('newValue', newValue)
emit('update:timeValue', newValue)
})