NuxtN
Nuxt4y ago
13 replies
rich

Dynamic components not rendering

I'm wondering why the following code wouldn't work. It's not rendering the components (which are within /components/symbol/Twitter.vue, for example)

<li v-for="(link, index) in links" :key="index">
  <a :href="link.url" target="_blank"><component :is="socialComponent(link.title)"></component></a></li>

const socialComponent = (title) => {
    return `Symbol${title}`
}

If I inspect it's running as <symboltwitter></symboltwitter> but not rendering
Was this page helpful?