我没有找到任何有关非活动可清除图标的道具。在这种情况下也没有事件。因此,有什么方法可以删除可清除图标。
<v-file-input
ref="profilePictureFileInput"
v-model="profilePicture.file"
:rules="profilePicture.rules"
accept="image/png, image/jpeg, image/jpg"
placeholder="Pick an image"
prepend-icon="mdi-camera"
append-inner-icon=""
label="Image"
clearable="false">
答案 0 :(得分:0)
您在clearable
属性上的绑定是错误的。您需要使用:clearable="false"
。现在,您要将值作为字符串传递给<v-file-input>
组件,并且需要为其提供布尔值。