1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-02-19 03:13:51 +00:00
bramw_baserow/web-frontend/modules/database/components/card/RowCardFieldRating.vue
2021-12-28 12:37:58 +00:00

20 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>