refactor: make use of v-bind directive shorthand
vue.js best practices
This commit is contained in:
parent
c50cbc9750
commit
d2086b1661
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@
|
|||
<input
|
||||
type="text"
|
||||
v-model="name"
|
||||
v-bind:placeholder="editingCollection.name"
|
||||
:placeholder="editingCollection.name"
|
||||
@keyup.enter="saveCollection"
|
||||
/>
|
||||
</li>
|
||||
|
|
|
|||
Loading…
Reference in a new issue