vue 下载插件downloadjs
安装依赖npm install downloadjs使用范例<template><div style="margin:20px"><button @click="downloadText">下载文本——“{{ text }}”</button></div></template><script>import down
·
安装依赖
npm install downloadjs
使用范例
<template>
<div style="margin:20px">
<button @click="downloadText">下载文本——“{{ text }}”</button>
</div>
</template>
<script>
import download from "downloadjs";
export default {
methods: {
downloadText() {
this.fileName = "点击下载文本后生成的txt文件.txt";
download(this.text, this.fileName, "text/plain");
},
},
data() {
return {
text: "我爱你,中国!",
fileName: "",
};
},
};
</script>
更多功能
更多推荐
已为社区贡献26条内容
所有评论(0)