| | |
| | | <template> |
| | | <div> |
| | | <router-link |
| | | style="padding: 0" |
| | | :class="[ |
| | | prefixCls, |
| | | layout !== 'classic' ? `${prefixCls}__Top` : '', |
| | |
| | | to="/" |
| | | > |
| | | <img |
| | | class="h-[calc(var(--logo-height)-10px)] w-[calc(var(--logo-height)-10px)]" |
| | | style="width: 200px;height: 50px;margin-left: -10px" |
| | | src="@/assets/imgs/logo.png" |
| | | /> |
| | | <div |
| | | v-if="show" |
| | | :class="[ |
| | | 'ml-10px text-16px font-700', |
| | | { |
| | | 'text-[var(--logo-title-text-color)]': layout === 'classic', |
| | | 'text-[var(--top-header-text-color)]': |
| | | layout === 'topLeft' || layout === 'top' || layout === 'cutMenu' |
| | | } |
| | | ]" |
| | | > |
| | | {{ title }} |
| | | </div> |
| | | <!-- <div--> |
| | | <!-- v-if="show"--> |
| | | <!-- :class="[--> |
| | | <!-- 'ml-10px text-16px font-700',--> |
| | | <!-- {--> |
| | | <!-- 'text-[var(--logo-title-text-color)]': layout === 'classic',--> |
| | | <!-- 'text-[var(--top-header-text-color)]':--> |
| | | <!-- layout === 'topLeft' || layout === 'top' || layout === 'cutMenu'--> |
| | | <!-- }--> |
| | | <!-- ]"--> |
| | | <!-- >--> |
| | | <!-- {{ title }}--> |
| | | <!-- </div>--> |
| | | </router-link> |
| | | </div> |
| | | </template> |