Vuejs VueFormGenerator поле ввода фокуса - PullRequest
0 голосов
/ 08 января 2019

Я использую VueFormGenerator, и я хочу, чтобы фокус, например, поле poscode. Я не могу найти его на их сайте https://icebob.gitbooks.io/vueformgenerator

Как мне этого добиться?

schema: {
        fields: [{
            focus:true,
            id:"zaw-postcode",
            type: "input",
            inputType: "text",
            model: "postcode",
            placeholder: "Postcode...",
            label: "Postcode",
            required: true,
            validator: VueFormGenerator.validators.postcode,
            hint: "Example: 1234 AB",
        }, {
   etc
   etc
   etc

1 Ответ

0 голосов
/ 08 января 2019

Ответ:

attributes: {'autofocus':true}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...