|
123456789101112131415 |
- const ProfilRouter = {
- template: `
- <div>
- <ProfilCard
- v-for="(profil, index) in profilcard"
- :key="profil.id"
- :profil="profil"
- ></ProfilCard>
- </div>`,
- data: function () {
- return { profilcard: _profilcard };
- },
- methods: {
- },
- };
|