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.

bookmark.js 342B

12345678910111213141516
  1. const BookmarkRouter = {
  2. template: `
  3. <div>
  4. <div class="bookmark-headline"><h4><b>Gepeicherte Beiträge</b></h4></div>
  5. <MsgCard
  6. v-for="(msg, index) in messages"
  7. :key="msg.id"
  8. :msg="msg"
  9. ></MsgCard>
  10. </div>`,
  11. data: function () {
  12. return { messages: _messages };
  13. },
  14. methods: {
  15. },
  16. };