File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11<template >
22 <div >
33 <div class =" layout-padding input-example" style =" max-width : 600px ;" >
4- <q-input ref =" xi" @change =" onChange" v-model =" text" />
4+ <q-input ref =" xi" :attributes = " {gigi: 'yes'} " @change =" onChange" v-model =" text" />
55 <q-btn @click =" $refs.xi.select()" >Select</q-btn >
66 <q-input v-model =" text" stack-label =" Stack Label" />
77 <q-input v-model =" text" float-label =" Float Label" placeholder =" Gigi" />
Original file line number Diff line number Diff line change 4242 :readonly =" readonly"
4343 :maxlength =" maxLength"
4444 :rows =" minRows"
45+ v-bind =" attributes"
4546
4647 :value =" value"
4748 @input =" __set"
6667 :disabled =" disable"
6768 :readonly =" readonly"
6869 :maxlength =" maxLength"
69- :autocomplete = " autocomplete "
70+ v-bind = " attributes "
7071
7172 :min =" min"
7273 :max =" max"
@@ -139,7 +140,7 @@ export default {
139140 clearable: Boolean ,
140141 noPassToggle: Boolean ,
141142 readonly: Boolean ,
142- autocomplete : String ,
143+ attributes : Object ,
143144
144145 min: Number ,
145146 max: Number ,
You can’t perform that action at this time.
0 commit comments