Skip to content

Instantly share code, notes, and snippets.

@PKTseng
Created August 11, 2020 12:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PKTseng/8e07aa29d9a6b5fc089c74e80e379b68 to your computer and use it in GitHub Desktop.
Save PKTseng/8e07aa29d9a6b5fc089c74e80e379b68 to your computer and use it in GitHub Desktop.
圖片上傳
<div id="app">
<input type="file" @change="selectFile">
</div>
new Vue({
el:"#app",
data:{
},
methods:{
selectFile(e){
const file = e.target.files.item(0);
console.log(file);
},
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment