isBindWx.ts 204 B

1234567891011
  1. import { useAuthStore } from "@/store/auth";
  2. export function useIsBindWx() {
  3. const authStore = useAuthStore();
  4. return {
  5. isBindWx() {
  6. return Boolean(authStore.userInfo?.openId);
  7. }
  8. }
  9. }