vue의 성능 문제.js v-if 조건

1373 단어
여기 제가 사용하는 것은 vue 폼 생성기입니다.여기서 나의 문제는 내가 이미 많은 종류를 위해 v-if 조건을 짰다는 것이다.같은 방식으로, 나는 많은 v-if 폼 생성기 구성 요소를 가지고 있으며, 그 중에서 v-if 조건을 작성했다.그래서 나는 이곳에서 성능 문제에 직면해 있다.그래서 내 문제는 우리가 이런 조건을 쓰면그래서 이것은 성능이나 다른 방면의 원인일 수 있다.
<div v-if="(category == 'Real Estate | Single Family Homes')||(category == 'Real Estate | Town Homes')||(category == 'Real Estate | Condominiums')||(category == 'Real Estate | Multi Family')||(category == 'Real Estate | Mobile Homes')||(category == 'Real Estate | Farm/Ranch Land')||(category == 'Real Estate | Commercial Property')||(category == 'Real Estate | Foreclosures')||(category == 'Real Estate | Storage')||(category == 'Real Estate | Vacation Property')||(category == 'Real Estate | Open Houses')||(category == 'Real Estate | Other Properties')">

<vue-form-g :schema="schema_Real_Estate" :model="model" :options="formOptions"></vue-form-g>

<span class="prev_next">
<button class="prev_next_btn" @click.prevent="prev()">Previous</button>
<button style="background-color:lightgray;" class="prev_next_btn" @click.prevent="next(2)">Next</button>
</span>
</div>

좋은 웹페이지 즐겨찾기