
{{ todayHoroscope.date }}
{{ todayHoroscope.horoscope }}
javascript
const app = new Vue({el: ‘app’,data: {zodiacs: [‘白羊座’, ‘金牛座’, ‘双子座’, ‘巨蟹座’, ‘狮子座’, ‘处女座’, ‘天秤座’, ‘天蝎座’, ‘射手座’, ‘摩羯座’, ‘水瓶座’, ‘双鱼座’],selectedZodiac: ‘白羊座’,todayHoroscope: null},methods: {getHoroscope() {const apiUrl = `https://horoscope-api.herokuapp.com/horoscope/today/${this.selectedZodiac}`;fetch(apiUrl).then(response => response.json()).then(data => this.todayHoroscope = data).catch(error => console.error(error));}},mounted() {this.getHoroscope();}
});
最新资讯
© 版权声明
文章版权归作者所有,未经允许请勿转载。










