vapor-chamber API reference - v1.3.0
    Preparing search index...

    Function getVaporInteropPlugin

    • Returns the vaporInteropPlugin if available (Vue 3.6+). Use this to enable mixed Vapor/VDOM component trees.

      Vue 3.6.0-beta.12: VDOM slots are now normalized and exposed during Vapor interop, and VDOM interop state is no longer retained from emits — mixed trees are more correct without any code change here.

      Returns any

      import { createApp } from 'vue';
      import { getVaporInteropPlugin } from 'vapor-chamber';
      const plugin = getVaporInteropPlugin();
      if (plugin) createApp(App).use(plugin).mount('#app');