Bug description
When I am in mobile mode, I open the drawer with v-model to change state. But when I clicked outside, v-model isn't updated.
Steps to reproduce
<template>
<VResizeDrawer v-model="model">
</VResizeDrawer>
</template>
<script setup>
const model = shallowRef(true);
</script>
Relevant log output
Additional context
No response
Code of Conduct