The variables you are using for you v-models seem to be not defined anywhere, thats why you are getting all these "undefined" results.
In your <script setup> you can define them like this:
const titleValue = ref('')
const categoryValue = ref('')
const dateValue = ref('')
const descriptionValue = ref('')