|
|
@@ -7,7 +7,7 @@ export function render(_ctx, _cache) {
|
|
|
return (_openBlock(), _createElementBlock("div", null, [
|
|
|
(_openBlock(true), _createElementBlock(_Fragment, null, _renderList(_ctx.tableData, (data, __, ___, _cached) => {
|
|
|
const _memo = (_ctx.getLetter(data))
|
|
|
- if (_cached && _cached.key === _ctx.getId(data) && _isMemoSame(_cached, _memo)) return _cached
|
|
|
+ if (_cached && _cached.el && _cached.key === _ctx.getId(data) && _isMemoSame(_cached, _memo)) return _cached
|
|
|
const _item = (_openBlock(), _createElementBlock("span", {
|
|
|
key: _ctx.getId(data)
|
|
|
}))
|
|
|
@@ -55,7 +55,7 @@ export function render(_ctx, _cache) {
|
|
|
return (_openBlock(), _createElementBlock("div", null, [
|
|
|
(_openBlock(true), _createElementBlock(_Fragment, null, _renderList(_ctx.list, ({ x, y }, __, ___, _cached) => {
|
|
|
const _memo = ([x, y === _ctx.z])
|
|
|
- if (_cached && _cached.key === x && _isMemoSame(_cached, _memo)) return _cached
|
|
|
+ if (_cached && _cached.el && _cached.key === x && _isMemoSame(_cached, _memo)) return _cached
|
|
|
const _item = (_openBlock(), _createElementBlock("span", { key: x }, "foobar"))
|
|
|
_item.memo = _memo
|
|
|
return _item
|
|
|
@@ -71,7 +71,7 @@ export function render(_ctx, _cache) {
|
|
|
return (_openBlock(), _createElementBlock("div", null, [
|
|
|
(_openBlock(true), _createElementBlock(_Fragment, null, _renderList(_ctx.list, ({ x, y }, __, ___, _cached) => {
|
|
|
const _memo = ([x, y === _ctx.z])
|
|
|
- if (_cached && _cached.key === x && _isMemoSame(_cached, _memo)) return _cached
|
|
|
+ if (_cached && _cached.el && _cached.key === x && _isMemoSame(_cached, _memo)) return _cached
|
|
|
const _item = (_openBlock(), _createElementBlock("div", { key: x }, [
|
|
|
_createElementVNode("span", null, "foobar")
|
|
|
]))
|