12345678910111213141516171819202122232425262728 |
- <template>
- <div class="app-header__contentNews">
- <div class="app-header__contentNewsItem">
- <img class="app-header__logo" :src="faviconUrl" />
- </div>
- </div>
- </template>
- <script>
- export default {
- name: 'AppToday',
- inject: ['parentDutyId', 'hosId', 'dutyId'],
- props: {
- faviconUrl: {
- type: String,
- default: ''
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .app-header__logo {
- max-width: .7rem;
- max-height: .7rem;
- }
- </style>
|