import _ from 'lodash'
debouncedOpenPage: _.debounce(function() {
this.openPage();
}, 200, {
leading: true,
trailing: false
}),
//防抖节流
import _ from 'lodash'
debouncedOpenPage: _.debounce(function() {
this.openPage();
}, 200, {
leading: true,
trailing: false
}),
//防抖节流