Skip to content

Commit

Permalink
Lint code
Browse files Browse the repository at this point in the history
  • Loading branch information
SingleMoonlight committed Sep 29, 2024
1 parent 6ca766f commit 8ffdd03
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/WeatherPresenter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function openWeatherCard() {
<template>
<div class="weather-outline" @click="openWeatherCard">
{{ props.locationName }}
<img class="weather-outline-icon" :src="'https://cdn.sencdn.com/widget2/assets/img/chameleon/weather/' + props.nowWeather.icon + '.svg'"></img>
<img class="weather-outline-icon" :src="'https://cdn.sencdn.com/widget2/assets/img/chameleon/weather/' + props.nowWeather.icon + '.svg'"/>
{{ props.nowWeather.temp + '℃' }}
</div>
<Transition mode="out-in" name="extension-from-left-top">
Expand All @@ -30,7 +30,7 @@ function openWeatherCard() {
{{ props.nowWeather.temp + '°' }}
</div>
<div class="weather-now-icon">
<img class="weather-outline-icon" :src="'https://cdn.sencdn.com/widget2/assets/img/chameleon/weather/' + props.nowWeather.icon + '.svg'"></img>
<img class="weather-outline-icon" :src="'https://cdn.sencdn.com/widget2/assets/img/chameleon/weather/' + props.nowWeather.icon + '.svg'"/>
</div>
</div>
<div class="weather-now-second-row">
Expand All @@ -47,7 +47,7 @@ function openWeatherCard() {
{{ futureDays[i - 1] }}
</div>
<div class="weather-future-list-icon">
<img class="weather-outline-icon" :src="'https://cdn.sencdn.com/widget2/assets/img/chameleon/weather/' + props.futureWeather[i - 1].icon + '.svg'"></img>
<img class="weather-outline-icon" :src="'https://cdn.sencdn.com/widget2/assets/img/chameleon/weather/' + props.futureWeather[i - 1].icon + '.svg'"/>
</div>
<div class="weather-future-list-temp">
{{ props.futureWeather[i - 1].tempMin + '°' + '/' + props.futureWeather[i - 1].tempMax + '°' }}
Expand Down

0 comments on commit 8ffdd03

Please sign in to comment.