| 123456789101112131415161718192021222324 |
- <template>
- <div class="dialog-item-select question-select"></div>
- </template>
- <script setup>
- const props = defineProps({
- is_selected: Boolean
- });
- const emit = defineEmits(['change']);
- </script>
- <style src="./dialog-item-common.css" />
- <style lang="css" scoped>
- .dialog-item-select {
- width: 20px;
- height: 20px;
- background-color: #fff;
- flex-shrink: 0;
- }
- .question-select {
- }
- </style>
|