vue js déroulant au click
<template>
  <b-container>
    <b-card>
      <b-alert show variant="success" align="center">
        <h4>[vuejs-05] : attribut [v-for]</h4>
      </b-alert>
      <VFor />
    </b-card>
  </b-container>
</template>
<script>
  import VFor from "./components/VFor.vue";
  export default {
    name: "app",
    components: {
      VFor
    }
  };
</script>
