123456789101112131415161718192021222324 |
- <template>
- <uv-cell v-bind="$attrs" class="bg-white">
- <template #right-icon>
- <uv-icon size="20" :name="selected?'checkmark-circle-fill':'checkmark-circle'"
- :color="selected?'primary':'var(--tips-color)'"/>
- </template>
- </uv-cell>
- </template>
- <script>
- export default {
- name: "common-picker-cell",
- props: {
- selected: {
- type: Boolean,
- default: false
- }
- }
- }
- </script>
- <style scoped>
- </style>
|