@@ -96,10 +96,10 @@ export const FormLayoutGroup = (args, { argTypes }) => ({
9696 },
9797 template: ` <FormLayout>
9898 <FormGroup>
99- <TextField v-model="min" type="number">
99+ <TextField v-model="min" autoComplete="off" type="number">
100100 <template #label>Minimum order</template>
101101 </TextField>
102- <TextField v-model="max" type="number">
102+ <TextField v-model="max" autoComplete="off" type="number">
103103 <template #label>Maximum order</template>
104104 </TextField>
105105 </FormGroup>
@@ -117,10 +117,10 @@ export const FormLayoutGroup = (args, { argTypes }) => ({
117117 code: dedent `
118118 <FormLayout>
119119 <FormGroup>
120- <TextField v-model="min" type="number">
120+ <TextField v-model="min" autoComplete="off" type="number">
121121 <template #label>Minimum order</template>
122122 </TextField>
123- <TextField v-model="max" type="number">
123+ <TextField v-model="max" autoComplete="off" type="number">
124124 <template #label>Maximum order</template>
125125 </TextField>
126126 </FormGroup>
@@ -146,16 +146,16 @@ export const FormGroupCondensed = (args) => ({
146146 },
147147 template: ` <FormLayout>
148148 <FormGroup condensed>
149- <TextField>
149+ <TextField autoComplete="off" >
150150 <template #label>Length</template>
151151 </TextField>
152- <TextField>
152+ <TextField autoComplete="off" >
153153 <template #label>Width</template>
154154 </TextField>
155- <TextField>
155+ <TextField autoComplete="off" >
156156 <template #label>Height</template>
157157 </TextField>
158- <TextField>
158+ <TextField autoComplete="off" >
159159 <template #label>Unit</template>
160160 </TextField>
161161 </FormGroup>
@@ -172,16 +172,16 @@ export const FormGroupCondensed = (args) => ({
172172 code: dedent `
173173 <FormLayout>
174174 <FormGroup condensed>
175- <TextField>
175+ <TextField autoComplete="off" >
176176 <template #label>Length</template>
177177 </TextField>
178- <TextField>
178+ <TextField autoComplete="off" >
179179 <template #label>Width</template>
180180 </TextField>
181- <TextField>
181+ <TextField autoComplete="off" >
182182 <template #label>Height</template>
183183 </TextField>
184- <TextField>
184+ <TextField autoComplete="off" >
185185 <template #label>Unit</template>
186186 </TextField>
187187 </FormGroup>
0 commit comments