t.vue 510 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view>
  3. <xyz-choose-image :uploadFlag="false" :imgList="imgList"></xyz-choose-image>
  4. </view>
  5. </template>
  6. <script>
  7. import xyzChooseImage from "@/components/xyz-choose-image/xyz-choose-image.vue"
  8. export default {
  9. components: {xyzChooseImage},
  10. data() {
  11. return {
  12. title: 'Hello',
  13. imgList: ['https://files.91lz.com/uploads/files/publish/e5d637135c2642848d7b210e7fdc69c0/qrCode/2020/11/04/151021386.jpg']
  14. }
  15. },
  16. onLoad() {
  17. },
  18. methods: {
  19. }
  20. }
  21. </script>
  22. <style>
  23. </style>