mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-03-14 20:52:51 +00:00
18 lines
324 B
Vue
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>
|