dashboard
repositories
filestore
activity
search
login
Stockzhjys
/
admin-vue
Stock综合交易所
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
first commit
dcc
2024-06-13
d583372447e4958fed5b5d5004f98baf6ce433f1
[Stockzhjys/admin-vue.git]
/
src
/
common
/
image.js
1
2
3
4
5
6
7
export const openImage = (img) => {
console.log(img)
const image = new Image();
image.src = img;
const newWindow = window.open();
newWindow.document.body.appendChild(image);
}