[Vuejs]-How to make this Vue.js component to work?

2👍

You should import the component CustomCard in the component where you want to use it, and then add it in components option from your vue object.
After this you are ready to use it in your template.

<template>
  <div id="app">
    <custom-card/>
  </div>
</template>

<script>
import CustomCard from './components/CustomCard' . // <-- This

export default {
  components: {
    CustomCard // <--This
  }
}

If you want to use different data… you can pass them by props like this:

<custom-card :data="newData"/>

Leave a comment