📅  最后修改于: 2022-03-11 14:56:26.898000             🧑  作者: Mango
// template
// script
data() {
return {
url: null,
}
},
methods: {
onFileChange(e) {
const file = e.target.files[0];
this.url = URL.createObjectURL(file);
}
}