import { defineComponent } from 'vue' import useWeatherStore from './useWeatherStore' export default defineComponent(() => { const weather = useWeatherStore() return () => (
{weather.weatherData?.base.stemp}°
{weather.weatherData?.city.name}
{weather.weatherData?.base.weather} {weather.weatherData?.base.ltemp}°/{weather.weatherData?.base.htemp}°
) })