I'm having an issue. I ask help.
common.57187b204d0b28eeb564.js:2 **TypeError: Cannot read property 'call' of undefined**
at n (manifest.c7542f69a9c2ddf9c0fe.js:1)
at Object.yD3k (default.25d60a204e9e6d5f2240.js:1)
at n (manifest.c7542f69a9c2ddf9c0fe.js:1)
at Object.1fFK (default.25d60a204e9e6d5f2240.js:1)
at n (manifest.c7542f69a9c2ddf9c0fe.js:1)
at a.r (default.25d60a204e9e6d5f2240.js:1)
at jt (common.57187b204d0b28eeb564.js:2)
at a.t._init (common.57187b204d0b28eeb564.js:2)
at new a (common.57187b204d0b28eeb564.js:2)
at ee (common.57187b204d0b28eeb564.js:2)
common.57187b204d0b28eeb564.js:2 **TypeError: n(...) is not a function**
at Object.L2iv (index.a4cadab2f474ee2dffcd.js:1)
at n (manifest.c7542f69a9c2ddf9c0fe.js:1)
at Object.9EEl (index.a4cadab2f474ee2dffcd.js:1)
at n (manifest.c7542f69a9c2ddf9c0fe.js:1)
at a.i (index.a4cadab2f474ee2dffcd.js:1)
at jt (common.57187b204d0b28eeb564.js:2)
at a.t._init (common.57187b204d0b28eeb564.js:2)
at new a (common.57187b204d0b28eeb564.js:2)
at ee (common.57187b204d0b28eeb564.js:2)
at init (common.57187b204d0b28eeb564.js:2)
Nuxt.config.js
module.exports = {
dev: (process.env.NODE_ENV !== 'production'),
script: [
{ src: 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js' }
]
},
modules: [
'bootstrap-vue/nuxt'
],
plugins: [
{ src: '~plugins/fullpage-vue.js', ssr: false },
'~plugins/vee-validate.js',
'~plugins/vuetify.js'
],
loading: '~/components/Loading.vue',
/*
** Build configuration
*/
build: {
vendor: [
'axios',
'fullpage-vue',
'vuetify'
],
extractCSS: true,
/*
** Run ESLINT on save
*/
extend (config, ctx) {
if (ctx.dev && ctx.isClient) {
config.module.rules.push({
enforce: 'pre',
test: /\.(js|vue)$/,
loader: 'eslint-loader',
exclude: /(node_modules)/
})
}
}
}
}
<!--cmty--><!--cmty_prevent_hook--><div align="right"><sub><em>This question is available on <a href="https://nuxtjs.cmty.io">Nuxt.js</a> community (<a href="https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c2019">#c2019</a>)</em></sub></div>