fix flow error for #3393

This commit is contained in:
Evan You 2016-08-11 08:53:31 -05:00
parent 837b0b224b
commit 86bf3da18e
2 changed files with 10 additions and 3 deletions

View File

@ -11,7 +11,7 @@ function locateNode (vnode: VNode): VNodeWithData {
}
export default {
bind (el: HTMLElement, { value }: VNodeDirective, vnode: VNodeWithData) {
bind (el: any, { value }: VNodeDirective, vnode: VNodeWithData) {
vnode = locateNode(vnode)
const transition = vnode.data && vnode.data.transition
if (value && transition && transition.appear && !isIE9) {
@ -21,7 +21,7 @@ export default {
el.style.display = value ? originalDisplay : 'none'
el.__vOriginalDisplay = originalDisplay
},
update (el: HTMLElement, { value, oldValue }: VNodeDirective, vnode: VNodeWithData) {
update (el: any, { value, oldValue }: VNodeDirective, vnode: VNodeWithData) {
/* istanbul ignore if */
if (value === oldValue) return
vnode = locateNode(vnode)

View File

@ -50,11 +50,18 @@ describe('Directive v-show', () => {
}).then(done)
})
it('should respect display value in style attribute', () => {
it('should respect display value in style attribute', done => {
const vm = new Vue({
template: '<div><span v-show="foo" style="display:block">hello</span></div>',
data: { foo: true }
}).$mount()
expect(vm.$el.firstChild.style.display).toBe('block')
vm.foo = false
waitForUpdate(() => {
expect(vm.$el.firstChild.style.display).toBe('none')
vm.foo = true
}).then(() => {
expect(vm.$el.firstChild.style.display).toBe('block')
}).then(done)
})
})