two functions in the source code
function() {
with(this){return _c("div")}
}
Vue.prototype._c
, just to omit this
, isn"t there a performance problem with with
, and strict mode is not supported.
two functions in the source code
function() {
with(this){return _c("div")}
}
Vue.prototype._c
, just to omit this
, isn"t there a performance problem with with
, and strict mode is not supported.
first of all, the writing of the source code can still be executed normally in strict mode, and then there is official explanation :
Previous: How do I use webpack-dev-server proxyTable.bypass?
Next: Report to babel of undefined after webpack4.1 configuration is completed
beginner, excuse me. 1. Question: webpack + vue-cli project, using babel to escape es6, in which I have a js written in the old-fashioned way, such as this: delete obj; webpack will report an error in strict mode, so modify the babel configuration ...