1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-03-14 20:52:51 +00:00
bramw_baserow/web-frontend/modules/database/components/card/RowCardFieldNumber.vue

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

15 lines
290 B
Vue
Raw Normal View History

2021-11-23 16:48:51 +00:00
<template functional>
<div class="card-text">
2024-12-17 09:43:02 +00:00
{{ $options.methods.formatNumberValue(props.field, props.value) }}
2021-11-23 16:48:51 +00:00
</div>
</template>
<script>
2024-12-17 09:43:02 +00:00
import numberField from '@baserow/modules/database/mixins/numberField'
2021-11-23 16:48:51 +00:00
export default {
height: 16,
2024-12-17 09:43:02 +00:00
mixins: [numberField],
2021-11-23 16:48:51 +00:00
}
</script>