i want to use JQuery in function computed() in my component:
computed: {
bgStyle() {
var $bg_wr = $('.bg-wr'),
}
}
For this in nuxt.config.js i tried to connect JQuery:
head: {
script: [
{ src: 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js' },
]
}
But it doesn't work. I get error '$ is not defined'. What i do wrong?