浏览代码

视频相关

Lita-Tako 4 月之前
父节点
当前提交
998e26f124
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/utils/systemUtils.js

+ 1 - 0
src/utils/systemUtils.js

@@ -189,6 +189,7 @@ export const downloadLink = (url) => {
189 189
 	const a = document.createElement('a')
190 190
 	a.href = url
191 191
 	a.download = 'download'
192
+	a.target = '_blank'
192 193
 	document.body.appendChild(a)
193 194
 	a.click()
194 195
 	document.body.removeChild(a)