mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
perf(@vant/lazyload): remove CustomEvent polyfill (#9589)
This commit is contained in:
parent
e8186795b7
commit
7aba794d80
@ -1,7 +1,6 @@
|
|||||||
import { nextTick } from 'vue';
|
import { nextTick } from 'vue';
|
||||||
import {
|
import {
|
||||||
inBrowser,
|
inBrowser,
|
||||||
CustomEvent,
|
|
||||||
remove,
|
remove,
|
||||||
find,
|
find,
|
||||||
_,
|
_,
|
||||||
|
@ -11,25 +11,6 @@ export const modeType = {
|
|||||||
observer: 'observer',
|
observer: 'observer',
|
||||||
};
|
};
|
||||||
|
|
||||||
// CustomEvent polyfill
|
|
||||||
const CustomEvent = (function () {
|
|
||||||
if (!inBrowser) return;
|
|
||||||
if (typeof window.CustomEvent === 'function') return window.CustomEvent;
|
|
||||||
function CustomEvent(event, params) {
|
|
||||||
params = params || { bubbles: false, cancelable: false, detail: undefined };
|
|
||||||
const evt = document.createEvent('CustomEvent');
|
|
||||||
evt.initCustomEvent(
|
|
||||||
event,
|
|
||||||
params.bubbles,
|
|
||||||
params.cancelable,
|
|
||||||
params.detail
|
|
||||||
);
|
|
||||||
return evt;
|
|
||||||
}
|
|
||||||
CustomEvent.prototype = window.Event.prototype;
|
|
||||||
return CustomEvent;
|
|
||||||
})();
|
|
||||||
|
|
||||||
function remove(arr, item) {
|
function remove(arr, item) {
|
||||||
if (!arr.length) return;
|
if (!arr.length) return;
|
||||||
const index = arr.indexOf(item);
|
const index = arr.indexOf(item);
|
||||||
@ -284,7 +265,6 @@ class ImageCache {
|
|||||||
export {
|
export {
|
||||||
ImageCache,
|
ImageCache,
|
||||||
inBrowser,
|
inBrowser,
|
||||||
CustomEvent,
|
|
||||||
remove,
|
remove,
|
||||||
find,
|
find,
|
||||||
noop,
|
noop,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user