vue 写一个图片上传页面
Vue 可以通过使用组件和指令来创建图片上传页面。首先,需要在组件的 template 中添加一个文件选择器,例如:<template><div><form><input type="file" ref="fileInput" @change="upload"/></form></d...
·
Vue 可以通过使用组件和指令来创建图片上传页面。
首先,需要在组件的 template 中添加一个文件选择器,例如:
<template>
<div>
<form>
<input type="file" ref="fileInput" @change="upload"/>
</form>
</div>
</template>
更多推荐
已为社区贡献1条内容
所有评论(0)