You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
461 B
24 lines
461 B
<template>
|
|
<div>
|
|
<myText ref="telText" tel="12305" style="width:200;height:100" @onTel="onTel" @click="myTextClick"></myText>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
onLoad() {
|
|
},
|
|
methods: {
|
|
onTel(e) {
|
|
console.log("onTel="+e.detail.tel);
|
|
},
|
|
myTextClick(e) {
|
|
this.$refs.telText.clearTel();
|
|
}
|
|
}
|
|
}
|
|
</script>
|