Closed YolloDwarf closed 5 years ago
You are wanting to import is as a component, but you are importing the plugin. See usage:
Load VueAutosuggest into your vue app globally.
import VueAutosuggest from "vue-autosuggest";
Vue.use(VueAutosuggest);
or locally inside a component:
import { VueAutosuggest } from 'vue-autosuggest';
export default {
...
components: {
VueAutosuggest
}
...
};
I get a "failed to mount component: template or render function not defined" with the following code:
[..]
[..]
I basically copied the basic code in the README but the template won't render.