祥兆质量前端
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

<script>
export default{
data(){
return{
url:'',
}
},
created() {
const url = localStorage.getItem("imgUrl");
if (url) {
this.url = url;
localStorage.removeItem("imgUrl")
}
}
}
</script>
<template>
<div style="margin: 0 auto;text-align: center;line-height: 100vh">
<!-- <img :src="url" v-viewer>-->
<el-image :src="url"></el-image>
</div>
</template>
<style scoped>
</style>