Cannot read properties of undefined (reading '$get')
yarn add @nuxtjs/axios
// nuxt.config.js
export default {
// @nuxtjs/axios を使用する場合
modules: [
'@nuxtjs/axios',
],
// その他の設定...
}
// @nuxtjs/axios を使用する場合
async asyncData({ $axios }) {
const pages = await $axios.$get('/pages.json');
return { pages };
}