需要依賴插件
vue-resource
npm install vue-resource --save
?
?
https://cn.vuejs.org/v2/cookbook/using-axios-to-consume-apis.html
采用axios一樣可以取數值
new Vue({ el: '#app', data () { return { info: null } }, mounted () { axios .get('https://api.coindesk.com/v1/bpi/currentprice.json') .then(response => (this.info = response)) } })
?