EVUI icon indicating copy to clipboard operation
EVUI copied to clipboard

ev-grid 성능 최적화

Open jinbekim opened this issue 6 months ago • 0 comments

        <table ref="table">
          <tbody>
            <!-- Row List -->
            <template
              v-for="(row, rowIndex) in viewStore"
              :key="rowIndex"
            >
              <tr

현재 row 키가 index로 되어 있어 성능 개선의 여지가 남아 있습니다.

https://vuejs.org/api/built-in-special-attributes.html#key

jinbekim avatar Aug 08 '24 03:08 jinbekim