I'm trying to follow the [example to use useStore within an Vue2 app with Vuex3](https://github.com/vueblocks/vue-use-utilities/blob/main/examples/vue2-demo/src/components/Counter.vue). I wrote a simple component just to initialize the store: ``` import { defineComponent } from 'vue'; import { useStore } from '@vueblocks/vue-use-vuex'; export default defineComponent({ setup() { const store = useStore(); }, }); ``` The compiler always throws the error and warning: `You must use this function within the "setup()" method` Is there any limitation to use the vue-use-vuex with Vue2.7 and Vuex3.6?