Skip to content

Commit 3672889

Browse files
committed
Fixed v-bind ordering to supress warning
fawmi#179
1 parent eab740a commit 3672889

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/autocomplete.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<input ref="input" v-bind="$attrs" v-on="$attrs" />
2+
<input v-bind="$attrs" ref="input" v-on="$attrs" />
33
</template>
44

55
<script>

0 commit comments

Comments
 (0)