fix(deps): update vueuse to v11 (major) (#2922)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: TAKAHASHI Shuuji <shuuji3@gmail.com>
This commit is contained in:
renovate[bot] 2024-08-21 00:51:05 +09:00 committed by GitHub
parent 7de45d154e
commit b8efd67e83
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 104 additions and 31 deletions

View file

@ -21,7 +21,7 @@ export async function useAsyncIDBKeyval<T>(
const data = (shallow ? shallowRef : ref)(initialValue) as Ref<T>
const rawInit: T = toValue(initialValue)
const rawInit: T = toValue<T>(initialValue)
async function read() {
if (!isIDBSupported)