Answers for "vue js déroulant au click"

0

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>
Posted by: Guest on May-08-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language