RootImage.vue 419 B

12345678910111213141516171819
  1. <template>
  2. <AnwserPictureResult :image_list="image_list"/>
  3. </template>
  4. <script setup>
  5. // import RefferenceFlag from './RefferenceFlag.vue'
  6. import AnwserPictureResult from '../anwser-pictures/AnwserPictureResult.vue';
  7. // import AnwserPictureLoading from './anwser-pictures/AnwserPictureLoading.vue';
  8. const props = defineProps({
  9. src: String,
  10. alt: String
  11. });
  12. const image_list = [
  13. props.src,
  14. ]
  15. </script>