<iframe
  id="frames"
  class="iframe-template"
  :src="htmlSrc"
  frameborder="0"
  style="border:0px;"
></iframe>
<c-button type="primary" v-print="'#frames'">打印</c-button>
printObj: {
    id: "frames",
    popTitle:"標題",
    standdard: "HTML",
    extraCss: this.htmlSrc,
    extraHead:'<meta http-equiv="Content-Language"content="zh-cn"/>'
 }
//一定全局定義樣式
@media print {
    //打印的樣式
    #frames {
        width: 100%;
        height: calc(100vh - 220px);
    }
}