v-for를 사용하여 반복할 때 vuej가 크래시됨 다음과 같은 대상이 있습니다. const iterable = { items: [1,2,3,4], currentIndex: 0, [Symbol.iterator]() { const self = this; return { next() { return { done: self.currentIndex === self.items.length, value: self.items[self.currentIndex++] } } } } } 루핑할 수 있다for of: for(let i of iterable){ console.log(i) } 이제 v-for를 사용하여 반복해야 합니다. {{item}} 그러나 Vuejs는 크래쉬하고 무한 루프 상태가 되는 것처럼 보입니다.브라우저..