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