I am currently working on integrating VueJS 3 into a Laravel project and utilizing a JS file to implement a markdown toolbar. The JS file contains functions that generate buttons for applying various markdown options. Everything is functioning properly, but I am encountering console errors that I would like to resolve.
These errors are all in the same format, such as:
Failed to resolve component: md-linedivider
If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement.
at <Markdowntoolbar>
at <Article onVnodeUnmounted=fn<onVnodeUnmounted> ref=Ref< undefined > >
at <BaseTransition mode="out-in" appear=false persisted=false ... >
at <Transition enter-active-class="animate__animated animate__fadeInLeft" leave-active-class="animate__animated animate__bounceOutUp" mode="out-in" >
at <RouterView>
at <App>
at <Bodycomponent>
at <App>
The error message indicates that the md-linedivider element should be excluded from component resolution through compilerOptions.isCustomElement. I have searched extensively for a solution and only came across this reference, but I do not have vue.config.js in my Laravel project to implement this change. I attempted to make adjustments in webpack.mis.js and app.js, but unfortunately, it did not resolve the issue.
Any suggestions or insights would be greatly appreciated.