[Vuejs]-Unable to initialise LiveLike chat in Vue 3, Failed to resolve component

0👍

You could use an isCustomElement config for this:

// main.js
const app = createApp({})
app.config.isCustomElement = tag => tag === 'livelike-chat'

Leave a comment