console error fixed

This commit is contained in:
Burak Civan 2022-12-12 15:50:22 +03:00
parent 8aeb89989f
commit 7eb46459b1

View File

@ -113,8 +113,8 @@ const app = new Vue({
methods: { methods: {
onRefFocus(ref) { onRefFocus(ref) {
let index = this.form.items.length - 1; let index = this.form.items.length - 1;
if (this.$refs['items-' + index + '-' + ref] != undefined) { if (typeof (this.$refs['items-' + index + '-' + ref]) !== 'undefined') {
let first_ref = this.$refs['items-' + index + '-' + ref]; let first_ref = this.$refs['items-' + index + '-' + ref];
first_ref != undefined ? first_ref[0].focus() : this.$refs[Object.keys(this.$refs)[0]][0].focus(); first_ref != undefined ? first_ref[0].focus() : this.$refs[Object.keys(this.$refs)[0]][0].focus();
} }