1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-09 07:46:48 +01:00
elk/plugins/masto.ts
2022-11-15 23:48:23 +08:00

12 lines
256 B
TypeScript

import { login } from 'masto'
export default defineNuxtPlugin((nuxt) => {
const { server, token } = useAppCookies()
const masto = login({
url: `https://${server.value}`,
accessToken: token.value,
})
nuxt.vueApp.provide('masto', masto)
})