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/RowCardFieldSingleSelect.vue
2021-11-23 16:48:51 +00:00

18 lines
324 B
Vue

<template functional>
<div class="card-single-select-option__wrapper">
<div
v-if="props.value"
class="card-single-select-option"
:class="'background-color--' + props.value.color"
>
{{ props.value.value }}
</div>
</div>
</template>
<script>
export default {
height: 20,
}
</script>