Nuxt3 -- 插件 小白程序员哈哈哈 2022-10-26 64 阅读1分钟 在 根目录 下 创建 plugins plugins/index.ts export default defineNuxtPlugin(() => { return { provide: { hello: msg => 'Hello ' + msg } } } 在 别的 文件 中 如何 使用 const { $hello } = useNuxtApp()