2018-12-12 14:31:54 +01:00
|
|
|
const ProfilRouter = {
|
|
|
|
template: `
|
|
|
|
<div>
|
|
|
|
<ProfilCard
|
|
|
|
v-for="(profil, index) in profilcard"
|
|
|
|
:key="profil.id"
|
|
|
|
:profil="profil"
|
|
|
|
></ProfilCard>
|
|
|
|
</div>`,
|
|
|
|
data: function () {
|
|
|
|
return { profilcard: _profilcard };
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
},
|
|
|
|
};
|