Evan You 10 лет назад
Родитель
Сommit
75b2f52301
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      src/platforms/web/runtime/directives/show.js

+ 1 - 0
src/platforms/web/runtime/directives/show.js

@@ -20,6 +20,7 @@ export default {
     el.style.display = value ? '' : 'none'
   },
   update (el: HTMLElement, { value, oldValue }: VNodeDirective, vnode: VNodeWithData) {
+    /* istanbul ignore if */
     if (value === oldValue) return
     vnode = locateNode(vnode)
     const transition = vnode.data && vnode.data.transition