Как сделать строку обязательной к заполнению в js? Скрин кода ниже. Подскажите пожалуйста
a("div", {
staticClass: "form-input"
}, [t._v("Как вас зовут?")]),
a("div", {
staticClass: "name-form-grid"
}, [
a("input", {
directives: [{
name: "model",
rawName: "v-model",
value: t.firstName,
expression: "firstName",
}, ],
staticClass: "input-middle",
attrs: {
type: "text",
placeholder: "Ваше имя..."
},
domProps: {
value: t.firstName
},
on: {
input: function (e) {
e.target.composing || (t.firstName = e.target.value);
},
},
}),