[Client] Fix bug

This commit is contained in:
syuilo 2018-11-09 22:11:11 +09:00
parent 460bb21c1e
commit 825fdb2475
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -5,7 +5,7 @@
</p>
<ul ref="choices">
<li v-for="(choice, i) in choices">
<input :value="choice" @input="onInput(i, $event)" :placeholder="this.$t('choice-n').replace('{}', i + 1)">
<input :value="choice" @input="onInput(i, $event)" :placeholder="$t('choice-n').replace('{}', i + 1)">
<button @click="remove(i)" :title="$t('remove')">
<fa icon="times"/>
</button>