mirror of
https://github.com/elk-zone/elk.git
synced 2025-03-21 07:30:59 +03:00
11 lines
256 B
TypeScript
11 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)
|
|
})
|