mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-24 16:36:46 +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>
|