printCode.vue 364 B

123456789101112131415161718192021222324
  1. <template>
  2. <div class="app-container">
  3. <img :src="path" style="width: 200px; height: 200px;">
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. data(){
  9. return {
  10. path:null
  11. }
  12. },
  13. created() {
  14. this.path = this.$route.query.path;
  15. },
  16. mounted(){
  17. window.print();
  18. }
  19. }
  20. </script>