index.js 345 Bytes
const toastEn = {
    userName: 'please input username',
    phone: 'pleace input correct phone format',
    email: 'pleace input correct email format',
}
const toastZn = {
    userName: '请输入用户名',
    phone: '请输入正确的手机格式',
    email: '请输入正确的邮箱格式',
}
export default {
    toastEn,
    toastZn
};