Skip to content
On this page

update:modelValue

Event return updated array of reactions id's that user already select

Event nameType
update:storagestring[] or number[]

Code example

vue
<template>
  <vue-reactions @update:storage="updateStorage" />
</template>

<script setup>
const updateStorage = (storageArray) => {
  console.log(storageArray)
};
</script>