vue 导出html


export2Excel() {
var a = document.createElement("a");
var url = window.URL.createObjectURL(
new Blob([this.gethtml()], {
type: ''
})
);
a.href = url;
a.download = "file.html";
a.click();
window.URL.revokeObjectURL(url);
}
 
gethtml() {
const template = this.$refs.test.innerHTML;
let html = `




X-Find迅聘选才

  


${template}
`; return html; },

你可能感兴趣的:(vue,技术整理,vue)