can I use a props without using toRefs, what problems can occur? What is the cost of using toRef?
toRefs
toRef
const props = defineProps(['background', 'blueBackground']); const { background } = toRefs(props);