mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-02-03 12:14:57 +08:00
10 lines
163 B
TypeScript
10 lines
163 B
TypeScript
import { useI18n } from '@/hooks/web/useI18n'
|
|
|
|
const { t } = useI18n()
|
|
|
|
// 必填项
|
|
export const required = {
|
|
required: true,
|
|
message: t('common.required')
|
|
}
|