read-more
read-more copied to clipboard
Failed to mount component
Hi, Im getting this error when trying to use the component approach. Is there something I'm doing wrong when importing the component?
app.js:4478 [Vue warn]: Failed to mount component: template or render function not defined.
found in
--> ReadMore ReadMoreComponent at resources/assets/js/components/read-more-component.vue Home at resources/assets/js/views/Home.vue Root
Thanks!
Hi @liolios , problem in your code is, that you are calling read-more plugin as a component, not as a plugin. In your main.js paste these two lines of code.
import ReadMore from 'vue-read-more'
Vue.use(ReadMore)
And then in your component simply use
Thanks. That wasn't clear to me either. Working now :)