Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | 84x 84x 84x 24x 24x 12x 12x 30x 12x 9x 1x 1x 8x 8x 18x 3x 2x 1x 3x 1x 1x 1x 3x 3x 1x 23x 8x 23x | import { VNode, VNodeChild } from '../vnode' import { isArray, isString, isObject } from '@vue/shared' import { warn } from '../warning' /** * v-for string * @private */ export function renderList( source: string, renderItem: (value: string, index: number) => VNodeChild ): VNodeChild[] /** * v-for number */ export function renderList( source: number, renderItem: (value: number, index: number) => VNodeChild ): VNodeChild[] /** * v-for array */ export function renderList<T>( source: T[], renderItem: (value: T, index: number) => VNodeChild ): VNodeChild[] /** * v-for iterable */ export function renderList<T>( source: Iterable<T>, renderItem: (value: T, index: number) => VNodeChild ): VNodeChild[] /** * v-for object */ export function renderList<T>( source: T, renderItem: <K extends keyof T>( value: T[K], key: K, index: number ) => VNodeChild ): VNodeChild[] /** * Actual implementation */ export function renderList( source: any, renderItem: (...args: any[]) => VNodeChild, cache?: any[], index?: number ): VNodeChild[] { let ret: VNodeChild[] const cached = (cache && cache[index!]) as VNode[] | undefined if (isArray(source) || isString(source)) { ret = new Array(source.length) for (let i = 0, l = source.length; i < l; i++) { ret[i] = renderItem(source[i], i, undefined, cached && cached[i]) } } else if (typeof source === 'number') { if (__DEV__ && !Number.isInteger(source)) { warn(`The v-for range expect an integer value but got ${source}.`) return [] } ret = new Array(source) for (let i = 0; i < source; i++) { ret[i] = renderItem(i + 1, i, undefined, cached && cached[i]) } } else if (isObject(source)) { if (source[Symbol.iterator as any]) { ret = Array.from(source as Iterable<any>, (item, i) => renderItem(item, i, undefined, cached && cached[i]) ) } else { const keys = Object.keys(source) ret = new Array(keys.length) for (let i = 0, l = keys.length; i < l; i++) { const key = keys[i] ret[i] = renderItem(source[key], key, i, cached && cached[i]) } } } else { ret = [] } if (cache) { cache[index!] = ret } return ret } |