u3u / vue-hooks

⚡️Awesome Vue Hooks

Home Page:https://vue-hooks.netlify.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

support for vue 2.7

fessacchiotto opened this issue · comments

hi! i'm using your library for a long time. i've a vue2 large application which I am going to port first to vue 2.7 (naruto) and then hopefully to vue3. as vue2.7 embed the vue-composition-api functionalities, i'll remove it from the project. but because of this you library is no longer working. i'm just using three hooks: useState, useRouter and useMutations. how do you recommend to proceed to update your library? any help is much appreciated!

hi! any help on this? thank you!

@fessacchiotto You can try https://github.com/vueuse/vueuse

hi! how do you see vueUse replacing, for example, something like:

const {
          runningSent,
          numberReceived,
      } = useState("mvvModule", [
          "runningSent",
          "numberReceived",
]);