Hi,
I am running into this error,
[Vue warn]: Failed to resolve component: smart-editor
If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement.
…but am a little puzzled why exactly since my main.js is defined as such.
import { createApp } from 'vue'
import App from './App.vue'
const app = createApp(App)
app.config.isCustomElement = tag => tag.startsWith('smart-');
app.mount('#app')
Any pointers how to resolve?
Thank you