小问题:
<file-pond
name="customImage"
ref="pond"
label-idle="Déposez votre image ici"
:allow-multiple="false"
accepted-file-types="image/jpeg, image/png"
server="http://localhost:3000'"
:files="custom.customImage"
@init="handleFilePondInit"
/>
是否可以动态设置服务器值?例如:
v-server="apiUrl+'/api/v1/upload'"
试试这个
:server="`${apiUrl}/api/v1/upload`"
我使用的是:server
,但它可以写为v-bind:server
和ES6模板文字,以获得更好的插值效果。