Skip to content

v1.6.0

Compare
Choose a tag to compare
@joeldenning joeldenning released this 04 Jan 00:03

Features

  • The mount lifecycle function now returns a promise that resolves with the Vue instance. (#28).

Example usage:

const lifecycles = singleSpaVue({...})

export const mount = props => lifecycles.mount(props).then(instance => {
  // do what you want with the Vue instance
})