12345678910111213141516171819202122232425 |
- <template>
- <div class="app-container">
- <img :src="path" style="width: 200px; height: 200px;">
- </div>
- </template>
- <script>
- export default {
- data(){
- return {
- path:null
- }
- },
- created() {
- console.log(this.$route.query.path)
- this.path = this.$route.query.path;
-
- },
- mounted(){
- window.print();
- }
-
-
- }
- </script>
|