vue2 + ElementUI 表单验证手记

rules: {
    account: [{
            required: true,
            message: '请输入用户名',
            trigger: 'blur'
        }, {
            min: 2,
            max: 25,
            message: '长度在 4 到 25 个字符'
        }, {
            pattern: /^[\u4E00-\u9FA5]+$/,
            message: '用户名只能为中文'
        }
        // { pattern:/^[a-zA-Z]w{5,17}$/, message: '以字母开头,长度在6-18之间, 只能包含字符、数字和下划线'}
    ],
    password: [{
        required: true,
        message: '请输入密码',
        trigger: 'blur'
    }, {
        min: 6,
        max: 30,
        message: '长度在 6 到 30 个字符'
    }, {
        pattern: /^(\w){6,20}$/,
        message: '只能输入6-20个字母、数字、下划线'
    }]
},
    原文作者:资深bug创意
    原文地址: https://segmentfault.com/a/1190000009076295
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞