AppToday.vue 469 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <div class="app-header__contentNews">
  3. <div class="app-header__contentNewsItem">
  4. <img class="app-header__logo" :src="faviconUrl" />
  5. </div>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. name: 'AppToday',
  11. inject: ['parentDutyId', 'hosId', 'dutyId'],
  12. props: {
  13. faviconUrl: {
  14. type: String,
  15. default: ''
  16. }
  17. }
  18. }
  19. </script>
  20. <style lang="less" scoped>
  21. .app-header__logo {
  22. max-width: .7rem;
  23. max-height: .7rem;
  24. }
  25. </style>