UNPKG

@hanxx/vue-hooks

Version:
7 lines (6 loc) 222 B
import { computed, getCurrentInstance } from '@vue/composition-api'; export default function useStore() { var vm = getCurrentInstance(); var store = computed(function () { return vm.$store; }); return store; }