1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-17 14:22:02 +00:00
bramw_baserow/web-frontend/modules/database/components/view/grid/fields/GridViewFieldUUID.vue

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

14 lines
263 B
Vue
Raw Permalink Normal View History

2023-11-06 09:18:00 +00:00
<template>
<div ref="cell" class="grid-view__cell active">
<div class="grid-field-text">{{ value }}</div>
</div>
</template>
<script>
import gridField from '@baserow/modules/database/mixins/gridField'
export default {
mixins: [gridField],
}
</script>