| 12345678910111213141516171819 |
- <template>
- <AnwserPictureResult :image_list="image_list"/>
- </template>
- <script setup>
- // import RefferenceFlag from './RefferenceFlag.vue'
- import AnwserPictureResult from '../anwser-pictures/AnwserPictureResult.vue';
- // import AnwserPictureLoading from './anwser-pictures/AnwserPictureLoading.vue';
- const props = defineProps({
- src: String,
- alt: String
- });
- const image_list = [
- props.src,
- ]
- </script>
|