mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-05 00:19:59 +00:00
12 lines
256 B
TypeScript
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)
|
|
})
|