前端使用Authing认证

前端使用Authing认证,第1张

最近在看Authing认证,试了一下,记录如下:

注册Authing官网在自建应用中找到App ID,修改用什么方式登陆,方式还是挺丰富的新建vue3项目,安装插件yarn add @authing/vue-ui-components,版本3.1.13测试过npm使用taobao安装不成功,yarn能成功新建页面
<template>
  <Guard :appId="appId" @login="handleLogin"/>
</template>

<script setup>
import { Guard } from "@authing/vue-ui-components";
import "@authing/vue-ui-components/lib/index.min.css";
import { ref } from "vue";

const appId = ref("APPID")// 从网站复制

function handleLogin(userInfo) {
  console.log(userInfo);// 登陆成功回调
}
</script>

在Authing的用户管理中,可以添加测试用户和看到用户列表

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1320760.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-11
下一篇 2022-06-11

发表评论

登录后才能评论

评论列表(0条)

保存