]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore(reactivity): remove unused comment (#1485) [ci skip]
authorPick <pickchen@tencent.com>
Mon, 6 Jul 2020 19:57:54 +0000 (03:57 +0800)
committerGitHub <noreply@github.com>
Mon, 6 Jul 2020 19:57:54 +0000 (15:57 -0400)
packages/reactivity/src/computed.ts

index 611ecaefb566cb1378ca9b936e24df1ce93d81f0..9aa7c6cf7f49d0e34fc703a0487f47ca97c4c25d 100644 (file)
@@ -47,7 +47,6 @@ export function computed<T>(
 
   const runner = effect(getter, {
     lazy: true,
-    // mark effect as computed so that it gets priority during trigger
     scheduler: () => {
       if (!dirty) {
         dirty = true