printCode.vue 408 B

12345678910111213141516171819202122232425
  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. console.log(this.$route.query.path)
  15. this.path = this.$route.query.path;
  16. },
  17. mounted(){
  18. window.print();
  19. }
  20. }
  21. </script>