Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

profil.js 285B

123456789101112131415
  1. const ProfilRouter = {
  2. template: `
  3. <div>
  4. <ProfilCard
  5. v-for="(profil, index) in profilcard"
  6. :key="profil.id"
  7. :profil="profil"
  8. ></ProfilCard>
  9. </div>`,
  10. data: function () {
  11. return { profilcard: _profilcard };
  12. },
  13. methods: {
  14. },
  15. };