Lithology.vue 487 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <div>
  3. <Button
  4. type="primary"
  5. @click="test"
  6. >
  7. 打印
  8. </Button>
  9. </div>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. }
  16. },
  17. methods: {
  18. test() {
  19. // 通知主进程开启打印窗口
  20. const electron = window.$electron || null
  21. if (electron) {
  22. const w = window.innerWidth
  23. const h = window.innerHeight
  24. electron.ipcRenderer.send('openPrint', { w, h })
  25. }
  26. }
  27. }
  28. }
  29. </script>