WEB表单美化方案
Lenny-Hu opened this issue · 0 comments
Lenny-Hu commented
文件选择框
简单快速
使用
lable
包裹input:file
,配置for
和id
属性,将input
隐藏,可实现点击label
弹出选择框
<label for="form-file" class="f-cb f-db">
<span class="name f-fl f-tar">照片</span>
<div class="f-fl ipt ipt-file f-csp f-pr f-toe">
{{form.file || '未选择任何文件'}}
</div>
<input id="form-file" class="f-dn" name="file" type="file" @change="onSelectedFile($event)" accept="image/png,image/jpeg">
</label>