בקשת מידע | vue - העברת האובייקט של Ref כ-props לשדה v-model בקומפוננטה | יש אפשרות?
-
ערב טוב,
אשמח לדעת אם משהו יוכל לעזור.components/Input.vue/@
<template> <div class="relative z-0 w-full mb-5 group"> <input :v-model="props.model" :type="props.type" :id="props.id" class="" placeholder=" " required /> <label :for="props.id" class=""> {{props.title}}</label> </div> </template> <script setup> const props = defineProps({ type: String, model: Object, title: String, id: String }); </script>
views/form.vue/@
<template> <InputVue id="title" title="כותרת" :model="form" type="text" /> </template> <script setup> const form = ref({}); </script>
תודה