vueuse-playground icon indicating copy to clipboard operation
vueuse-playground copied to clipboard

Playground Vue version

Open WORMSS opened this issue 9 months ago • 0 comments

Is there any chance of updating the version of Vue that the playground uses? I noticed it seems to be still at Vue 3.2.27

There is a lovely new feature in Vue 3.5 that I would like to take advantage of with watchArray() and thought I would test it out first, But noticed when I passed { deep: 1 } it was acting like { deep: true } which was not the intended effect.

It taken me a while to realise it wasn't my code, but just the version of vue that was the problem by using import { version } from 'vue'

Normal Vue Playground

This has deep 1 which tracks array .push/pop/splice() etc, but not tracking the arrays objects mutation.. It just doesn't have the nice (added/removed) that watchArray has.

WORMSS avatar May 20 '25 19:05 WORMSS