一分钟实现此功能~~~
1、<head></head>添加如下内容~
<meta name="format-detection" content="telephone=yes" />
2、templete 的内容
<p style="color:#00af3c;margin:30px" @click="callphone('13621189941')">拨打电话!</p>
3、js部分 methods
callphone (phonenumber) {
window.location.href = 'tel://' + phonenumber
}