<template>
<button type="button" v-on:click="phoneCall('17612084684')" >帅哥热线~点击拨打</button>
</template>
<script>
export default {
name: "call",
data(){
return{
tel:'17612084684'
}
},
methods:{
phoneCall: function (msg) {
window.location.href = 'tel://' + this.tel;
}
}
}
</script>
<style scoped>
</style>