1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-01 15:49:51 +00:00
bramw_baserow/web-frontend/modules/database/components/card/RowCardFieldURL.vue

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
315 B
Vue
Raw Normal View History

2021-11-23 16:48:51 +00:00
<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
>
2021-11-23 16:48:51 +00:00
</div>
</template>
<script>
export default {
height: 16,
}
</script>