If you want pick it by Object, like vuex mapState: // Object pick, re-renders the component when either state.count or state.genji change const { count, genji } = useStore((state) => ({ count: state.count, genji: state.genji })) If you want pick it lick by Array, like react...