js拨打电话
<template>
<div>
<div @click="dianwo">点我拨打电话</div>
</div>
</template>
<script>
export default {
data () {
return {
}
},
name:"tel",
methods:{
dianwo () {
window.location.href = "tel:10000"
}
}
}
</script>
a标签直接拨打 href:“tel:10000”
<a href="tel:10000">点我拨打电话</a>