You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
306 B
TypeScript
13 lines
306 B
TypeScript
|
1 month ago
|
import { defineNuxtPlugin } from '#app'
|
||
|
|
import { useCusToast } from '@/composables/useToast'
|
||
|
|
|
||
|
|
export default defineNuxtPlugin((nuxtApp) => {
|
||
|
|
const { toast } = useCusToast()
|
||
|
|
|
||
|
|
// 提供插件服务但避免使用冲突的全局属性名称
|
||
|
|
return {
|
||
|
|
provide: {
|
||
|
|
toastMessage: toast
|
||
|
|
}
|
||
|
|
}
|
||
|
|
})
|