App.vue 527 Bytes
<template>
  <div id="app">
    <router-view />
  </div>
</template>

<script>
export default  {
  name:  'App'
}
</script>
<style lang="scss" scoped>
/* 隐藏所有 Element UI 的 overlay、按钮、背景等 */
@media print {
  body * {
    visibility: hidden;
  }
  /* 只显示我们的 printArea 里内容 */
  [ref="printArea"], [ref="printArea"] * {
    visibility: visible;
  }
  /* 把它们拉到页面顶端 */
  [ref="printArea"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
}

</style>