Untitled
unknown
javascript
2 years ago
252 B
10
Indexable
methods: {
async fetchBitcoinPrice() {
try {
const response = await axios.get('<API_URL>');
this.bitcoinPrice = response.data.bitcoin.usd;
} catch (error) {
console.error('Oops, something went wrong:', error);
}
},
},
Editor is loading...