Files
raven-client/ayanova/src/components/phone-control.vue
2020-12-01 22:11:25 +00:00

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>