mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-24 16:36:46 +00:00
19 lines
327 B
Vue
19 lines
327 B
Vue
<template functional>
|
|
<div class="card-text">
|
|
<a
|
|
:href="'mailto:' + props.value"
|
|
target="_blank"
|
|
rel="nofollow noopener noreferrer"
|
|
class="forced-pointer-events-auto"
|
|
@mousedown.stop
|
|
>{{ props.value }}</a
|
|
>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
height: 16,
|
|
}
|
|
</script>
|