22 lines
450 B
Vue
22 lines
450 B
Vue
<script setup>
|
|
import { useI18n } from 'vue-i18n';
|
|
const props = defineProps({
|
|
phoneNumber: { type: [String, Number], default: null },
|
|
});
|
|
const { t } = useI18n();
|
|
</script>
|
|
<template>
|
|
<QBtn
|
|
v-if="props.phoneNumber"
|
|
flat
|
|
round
|
|
icon="phone"
|
|
size="sm"
|
|
color="primary"
|
|
padding="none"
|
|
:href="`sip:${props.phoneNumber}`"
|
|
@click.stop
|
|
/>
|
|
</template>
|
|
<style scoped></style>
|