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

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

14 lines
265 B
Vue
Raw Normal View History

2023-12-13 08:48:58 +00:00
<template>
<div ref="cell" class="grid-view__cell active">
<div class="grid-field-number">{{ value }}</div>
</div>
</template>
<script>
import gridField from '@baserow/modules/database/mixins/gridField'
export default {
mixins: [gridField],
}
</script>