JavaScript
- 3 ответа
- 0 вопросов
1
Вклад в тег
methods: {
someFunc() {
const vm = this
// _ = lodash
_.each([1,2,3], function(...args) {
// this == function(){}
// vm == vue
})
}
}
$(".js-input").on("blur", function(){
$(".js-ul").removeClass("opacity");
$(this).removeClass("nw");
});