get the css file under the folder to the download method, how to introduce this, I will splice it into the html variable, download the file operation!
methods:{
download(){
const template = this.$refs.resume.$el.innerHTML;
let html = `<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>X-Find</title>
<style>
</style>
</head>
<body>
<div class="resume_preview_page" style="margin:0 auto;width:1200px">
${template}
</div>
</body>
</html>`
writer("test.html", html, "utf-8")
}
}