Untitled

Anonymous
javascript
11/05/2023 7:47 PM
336 B
17
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...