[Vuejs]-Can we use library function without calling 'this'?

0👍

I think you can try

window._ = require('lodash')

or

import lodash from 'lodash'
window._ = lodash

Leave a comment