mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-02-12 08:08:48 +00:00
18 lines
315 B
Vue
18 lines
315 B
Vue
<template functional>
|
|
<div class="card-text">
|
|
<a
|
|
:href="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>
|