祥兆质量前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
433 B

  1. <script>
  2. export default{
  3. data(){
  4. return{
  5. url:'',
  6. }
  7. },
  8. created() {
  9. const url = localStorage.getItem("imgUrl");
  10. if (url) {
  11. this.url = url;
  12. localStorage.removeItem("imgUrl")
  13. }
  14. }
  15. }
  16. </script>
  17. <template>
  18. <div style="margin: 0 auto;text-align: center;line-height: 100vh">
  19. <!-- <img :src="url" v-viewer>-->
  20. <el-image :src="url"></el-image>
  21. </div>
  22. </template>
  23. <style scoped>
  24. </style>