UNPKG

maz-ui

Version:

A standalone components library for Vue.Js 3 & Nuxt.Js 3

11 lines (10 loc) 307 B
import { defineNuxtPlugin } from "#imports"; export default defineNuxtPlugin(({ $config, vueApp }) => { const defaultMazIconPath = $config.public.mazUi?.defaultMazIconPath; vueApp.provide("mazIconPath", defaultMazIconPath); return { provide: { mazIconPath: defaultMazIconPath } }; });