1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-25 05:21:30 +00:00
bramw_baserow/web-frontend/modules/database/components/card/RowCardFieldPhoneNumber.vue
2021-11-23 16:48:51 +00:00

11 lines
196 B
Vue

<template functional>
<div class="card-text">
<a :href="'tel:' + props.value" target="_blank">{{ props.value }}</a>
</div>
</template>
<script>
export default {
height: 16,
}
</script>