I'm trying to create a Component instance:
App.vue
import MyComponent from './components/MyCompnent.vue';
export default {
mounted() {
// The following line fails.
const vm = new MyComponent();
vm.$mount('#some-place');
}
}
and the new line reports an error:
Uncaught TypeError: MyComponent.default is not a constructor
So how if I want to create the component?