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

21 lines
477 B
Vue

<template functional>
<div class="card-many-to-many__list-wrapper">
<div class="card-many-to-many__list">
<div
v-for="item in props.value"
:key="item.id"
class="card-many-to-many__item card-multiple-select-option"
:class="'background-color--' + item.color"
>
<span class="card-many-to-many__name">{{ item.value }}</span>
</div>
</div>
</div>
</template>
<script>
export default {
height: 22,
}
</script>