// 普通的plugin export default defineNuxtPlugin((nuxtApp) => { return { provide: { format(a: number, b: number) { return a + b } } } })