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.

home.js 259B

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