Answers for "nuxt axios for not working"

0

nuxt axios for not working

export default {
  data() {
    return {
      ip: ''
    }
  },
  methods: {
    async getData() {
      const ip = await this.$axios.$get('http://icanhazip.com')
      this.ip = ip
    }
  } 
}
Posted by: Guest on October-30-2021

Code answers related to "nuxt axios for not working"

Browse Popular Code Answers by Language