I find myself using `const state = reactive({...})` exclusively now. It's just way simpler (read:less mental overhead). But, I've only been using the composition API for a short while now.
Do experienced Vue devs actually use both regularly?
According to the vue discord where I asked a lot of composition API questions, pretty much people use ref exclusively. It's much more explicit in your `use*` composition files when you have to call .value. It's rare to me to export a very large object of keys, and I have yet to use it yet.
ref() is for single values, and to get at the actual VALUE, you need to use "myRef.value"
Though when you use ref()'s in templates, it will bind to .value for you.