效果图:
1.引入组件vue-mini-weather:
npm i vue-mini-weather --save
目前版本(package.json中查看):
"vue-mini-weather": "^0.3.8",
2.在项目中局部使用天气组件:
import { vMiniWeather } from 'vue-mini-weather'
export default {
components: {
vMiniWeather
},
}
3.使用天气组件
<template>
<div>
<v-mini-weather>
<template #default="{ weather, icon }">
<span>{{ weather.temp }}℃ {{ weather.weather }}</span>
</template>
</v-mini-weather>
</div>
</template>
weather,icon 组件内自带,temp温度,weather天气情况