[Vuejs]-Nesting custom tags in Vue

0👍

Vue instances and components must have a single root element. In your LogoUploader you have two root elements.

You need to wrap them in a root.

<template>
  <div>
    <div class="logo-container">
        <company-logo size="65px" :src="`${company.logo.url}`"></company-logo>
    </div>
    <div class="logo-uploaded-details">
        <p>Last updated: {company.logo.last_updated}</p>
        <button class="file-browse-btn">Upload Image</button>
    </div>
  </div>
</template>
👤Bert

Leave a comment