Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
render() {
return h(KeepAlive, this.ok ? h(Child) : null)
}
}
render() {
return [
withVShow(h('div', { style: { display: 'block' } }), this.value)
]
}
})
render() {
return this.show ? h(Child) : null
}
}
export const Transition: FunctionalComponent = (
props,
{ slots }
) => h(BaseTransition, resolveTransitionProps(props), slots)