Wouter Laermans

Results 2 comments of Wouter Laermans

@kylemilloy, casting the type to `any` wouldn't suffice because the logic for checking if a value is selected is structured like this: `const isSelected = computed(() => rootContext.modelValue?.value === props.value)`...

This is my workaround for those who are interested: `SelectItem` is quite straightforward ```vue ``` And `SelectRoot` ```vue import { SelectRoot } from 'radix-vue' import { computed } from 'vue'...