1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-11-24 16:36:46 +00:00
bramw_baserow/web-frontend/modules/database/components/card/RowCardFieldRating.vue
2021-12-28 12:37:58 +00:00

21 lines
424 B
Vue

<template functional>
<component
:is="$options.components.Rating"
:read-only="true"
:rating-style="props.field.style"
:color="props.field.color"
:value="props.value"
:max-value="props.field.max_value"
class="card-rating"
></component>
</template>
<script>
import Rating from '@baserow/modules/database/components/Rating'
export default {
height: 18,
components: { Rating },
}
</script>