This commit is contained in:
14651
2025-08-14 15:43:24 +08:00
parent 253825ab0c
commit e66713b51f
19 changed files with 1685 additions and 26 deletions

View File

@@ -0,0 +1,17 @@
import { showToast, showSuccess, showError, showWarning, showInfo } from '@/utils/toast'
/**
* Toast composable
* 提供统一的消息提示功能
*/
export function useToast() {
return {
showToast,
showSuccess,
showError,
showWarning,
showInfo
}
}
export default useToast