1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-30 15:20:01 +00:00
bramw_baserow/web-frontend/modules/database/components/view/grid/fields/FunctionalGridViewFieldURL.vue

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

16 lines
287 B
Vue
Raw Permalink Normal View History

<template functional>
<div ref="cell" class="grid-view__cell" :class="data.staticClass || ''">
<div class="grid-field-text">
<u>
{{ props.value }}
</u>
</div>
</div>
</template>
<script>
export default {
name: 'FunctionalGridViewFieldURL',
}
</script>