前端国际化-form表单验证提示语
Posted ctb-web
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前端国际化-form表单验证提示语相关的知识,希望对你有一定的参考价值。
表单验证的规则对象不要再data里面写入,在computed里面写,就可以了
export default { name: ‘index‘, data() { return { ruleValidate: { name: [ { required: true, message: this.$t("name"), trigger: ‘blur‘ } ] } }; } };
把上面代码,改成下面这种
export default { name: ‘index‘, data() { return { }; }, computed:{ ruleValidate(){ return{ name: [ { required: true, message: this.$t("name"), trigger: ‘blur‘ } ] } } } };
这样,在切换语言时,提示信息也可以自动切换了
以上是关于前端国际化-form表单验证提示语的主要内容,如果未能解决你的问题,请参考以下文章