shuriken-ui / nuxt

Nuxt version of Shuriken UI with ready to use components
https://shurikenui.com/
MIT License
139 stars 18 forks source link

fix: modelValue type on autocomplete #97

Closed JohnCampionJr closed 8 months ago

JohnCampionJr commented 8 months ago

component emits type of any | any[] causing type errors

const emits = defineEmits<{
  (event: 'update:modelValue', value?: any | any[]): void
}>()