22 lines
341 B
Vue
22 lines
341 B
Vue
<template>
|
|
<v-text-field
|
|
v-bind="$attrs"
|
|
v-on="$listeners"
|
|
type="tel"
|
|
prepend-icon="$ayiPhoneAlt"
|
|
@click:prepend="dial"
|
|
></v-text-field>
|
|
</template>
|
|
<script>
|
|
/* Xeslint-disable */
|
|
|
|
export default {
|
|
methods: {
|
|
dial() {
|
|
console.log(this.$el.attributes.value);
|
|
//alert("DIAL");
|
|
}
|
|
}
|
|
};
|
|
</script>
|