From 1b40fa6c16d8d57e2ecff652ce6c8131fcbe36c8 Mon Sep 17 00:00:00 2001 From: Evan You Date: Sat, 1 Dec 2018 17:57:39 -0500 Subject: [PATCH] chore: todos --- packages/runtime-core/src/optional/memoize.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/runtime-core/src/optional/memoize.ts b/packages/runtime-core/src/optional/memoize.ts index 1659ff15..d1a77b63 100644 --- a/packages/runtime-core/src/optional/memoize.ts +++ b/packages/runtime-core/src/optional/memoize.ts @@ -12,6 +12,9 @@ // return memoize(h('div', this.msg + this.count), this, 0, [this.msg]) // } +// TODO how does this work in v-for? +// probably need to take vnode key into consideration + import { Component } from '../component' import { warn } from '../warning'