使用 Guard组件,后台配置了登录注册合并,但是组件邮箱只能登录,无法注册,注册会提示搜索不到邮箱

后台管理系统配置了登录注册合并,正常的逻辑是,没有注册的邮箱也可以获取验证码,但是现在的逻辑是未注册的获取验证码会提示搜索不到邮箱。
767bc0909d29ff712b70a9f06004077

示例代码:

<Guard :appId=“appId” @login=“onLogin”>

<script>
import { Guard } from "@authing/vue-ui-components";

// 引入 CSS 样式
import "@authing/vue-ui-components/lib/index.min.css";

export default {
  components: {
    Guard,
  },
  data: () => ({
    // 替换你的 AppId
    appId: "your_appId_at_authing_console",
  }),
  methods: {
    onLogin(userInfo) {
      console.log(userInfo);
    },
  },
};
</script>

文档链接:将 Guard 接入到 Vue 项目 | Authing 文档

请提供一下 SDK 的版本

"@authing/vue-ui-components": "^3.1.31"

收到,我们尝试复现一下,稍后给您回复。

麻烦截图看一下应用配置哈

麻烦再提供一下应用 ID,我们尝试了确实没复现