export default {
// 判断 " " / null / undefined的方法
isEmpty(text){
return (!text || 0 === text.length);
}