import _ from 'lodash'
...
created: function() {
_.debounce(function() {
console.log('test222');
}, 500);
},
methods: {
test: function() {
_.debounce(function() {
console.log('test222');
}, 500);
}
}
Этот код не работает. Совсем.
test: function() { _.debounce(function() { console.log('test222'); }, 500); }
test: _.debounce(function() {
console.log('test222');
}, 500)