showing results for - "vue js d c3 a9roulant au click"
Pip
28 Feb 2020
1<template>
2  <b-container>
3    <b-card>
4      <b-alert show variant="success" align="center">
5        <h4>[vuejs-05] : attribut [v-for]</h4>
6      </b-alert>
7      <VFor />
8    </b-card>
9  </b-container>
10</template>
11
12
13<script>
14  import VFor from "./components/VFor.vue";
15
16  export default {
17    name: "app",
18    components: {
19      VFor
20    }
21  };
22</script>
23