在vue项目中
在index.html中加入这一段
<meta name="format-detection" content="telephone=yes"/>
创建一个拨号函数
const callPhone = (phoneNumber) => {
window.location.href = 'tel:' + phoneNumber
}
然后调用即可
在H5中(phoneNumber即为要放的电话)
<a href="tel:phoneNumber">phoneNumber</a>
体验链接 test.lumine.top