Skip to content

Kirby 5.0.4

Panel Created

The created plugin type for the Panel runs plugin code directly after the Vue instance has been loaded and gives access to the instance. You can use this to add additional routes, register additional global events and more.

panel.plugin("my/plugin", {
  created(Vue) {
    // work with the newly created Vue instance here.   
  }
});