How to use the @vue/runtime-core.h function in @vue/runtime-core

To help you get started, we’ve selected a few @vue/runtime-core examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github vuejs / vue-next / packages / runtime-core / __tests__ / inheritance.spec.ts View on Github external
render() {
        return h(KeepAlive, this.ok ? h(Child) : null)
      }
    }
github vuejs / vue-next / packages / runtime-dom / __tests__ / directives / vShow.spec.ts View on Github external
render() {
        return [
          withVShow(h('div', { style: { display: 'block' } }), this.value)
        ]
      }
    })
github vuejs / vue-next / packages / runtime-dom / src / components / Transition.ts View on Github external
export const Transition: FunctionalComponent = (
  props,
  { slots }
) => h(BaseTransition, resolveTransitionProps(props), slots)