import Vue from 'vue' /*

* import MyComponent from 'components/my-component' */

export default function (template) {

return new Vue({
  template,
  computed: {
    // This is a utitly to add classes to your container
    wrapperClass () { return '' }
  },
  // Then include them here:
  components: {
    // MyComponent
  }
})

}