Redirecting...
+ +``` + +Next, we need to link the callback component with the route. Let's say the path is `/callback` and we are using `vue-router`: + +```ts +const router = createRouter({ + routes: [ + { + path: "/callback", + name: "callback", + component: CallbackView, + }, + ] +}); +``` + +### Make a Sign In Button + +```ts +import { useLogto } from "@logto/vue"; + +const { signIn } = useLogto(); +const onClickSignIn = () => signIn(redirectUrl); +``` + +```html + +``` + +### Retrieve Authentication Status + +```ts +import { useLogto } from '@logto/vue'; + +const { isAuthenticated } = useLogto(); +``` + +```html +页面跳转中...
+ +``` + +接下来,我们就可以在路由表中添加这个回调路由。假设我们的路由地址定义为 `/callback`,且使用的路由工具为 `vue-router`: + +```ts +const router = createRouter({ + ... + routes: [ + { + path: "/callback", + name: "callback", + component: CallbackView, + }, + ] +}); +``` + +### 创建一个登录按钮 + +```ts +import { useLogto } from "@logto/vue"; + +const { signIn } = useLogto(); +const onClickSignIn = () => signIn(redirectUrl); +``` + +```html + +``` + +### 判断当前登录状态 + +```ts +import { useLogto } from '@logto/vue'; + +const { isAuthenticated } = useLogto(); +``` + +```html +