鍒濆鎻愪氦锛氱墰鍙暟鎹鐞嗙郴缁?- 鍖呭惈鍚庣Spring Boot鍜屽墠绔疺ue3椤圭洰
This commit is contained in:
28
admin-system/node_modules/element-plus/lib/hooks/use-attrs/index.js
generated
vendored
Normal file
28
admin-system/node_modules/element-plus/lib/hooks/use-attrs/index.js
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var vue = require('vue');
|
||||
var lodashUnified = require('lodash-unified');
|
||||
var error = require('../../utils/error.js');
|
||||
|
||||
const DEFAULT_EXCLUDE_KEYS = ["class", "style"];
|
||||
const LISTENER_PREFIX = /^on[A-Z]/;
|
||||
const useAttrs = (params = {}) => {
|
||||
const { excludeListeners = false, excludeKeys } = params;
|
||||
const allExcludeKeys = vue.computed(() => {
|
||||
return ((excludeKeys == null ? void 0 : excludeKeys.value) || []).concat(DEFAULT_EXCLUDE_KEYS);
|
||||
});
|
||||
const instance = vue.getCurrentInstance();
|
||||
if (!instance) {
|
||||
error.debugWarn("use-attrs", "getCurrentInstance() returned null. useAttrs() must be called at the top of a setup function");
|
||||
return vue.computed(() => ({}));
|
||||
}
|
||||
return vue.computed(() => {
|
||||
var _a;
|
||||
return lodashUnified.fromPairs(Object.entries((_a = instance.proxy) == null ? void 0 : _a.$attrs).filter(([key]) => !allExcludeKeys.value.includes(key) && !(excludeListeners && LISTENER_PREFIX.test(key))));
|
||||
});
|
||||
};
|
||||
|
||||
exports.useAttrs = useAttrs;
|
||||
//# sourceMappingURL=index.js.map
|
||||
Reference in New Issue
Block a user