export function PhoneCheck (phone) {
const phoneRule = /^[1][0-9]{10}$/
if (phoneRule.test(phone)) {
return true
}
return false
}
export function PhoneCheck (phone) {
const phoneRule = /^[1][0-9]{10}$/
if (phoneRule.test(phone)) {
return true
}
return false
}