fix popper.js: Turn off scroll event monitoring to solve the problem of scroll lag

When there are more Tooltip components on the page, it is easy to cause the page scrolling to be severely stuck. It is recommended to close it by default.
This commit is contained in:
webpack 2020-07-21 11:36:14 +08:00 committed by GitHub
parent edd93e3116
commit f137032eed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,6 +7,10 @@ const Popper = isServer ? function() {} : require('popper.js/dist/umd/popper.js'
export default {
props: {
eventsEnabled: {
type: Boolean,
default: false
},
placement: {
type: String,
default: 'bottom'
@ -85,6 +89,8 @@ export default {
if (this.popperJS && this.popperJS.hasOwnProperty('destroy')) {
this.popperJS.destroy();
}
options.eventsEnabled = this.eventsEnabled;
options.placement = this.placement;