23 lines
		
	
	
		
			824 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			824 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import { computed, getCurrentInstance } from 'vue';
 | |
| import { fromPairs } from 'lodash-unified';
 | |
| 
 | |
| const DEFAULT_EXCLUDE_KEYS = ["class", "style"];
 | |
| const LISTENER_PREFIX = /^on[A-Z]/;
 | |
| const useAttrs = (params = {}) => {
 | |
|   const { excludeListeners = false, excludeKeys } = params;
 | |
|   const allExcludeKeys = computed(() => {
 | |
|     return ((excludeKeys == null ? void 0 : excludeKeys.value) || []).concat(DEFAULT_EXCLUDE_KEYS);
 | |
|   });
 | |
|   const instance = getCurrentInstance();
 | |
|   if (!instance) {
 | |
|     return computed(() => ({}));
 | |
|   }
 | |
|   return computed(() => {
 | |
|     var _a;
 | |
|     return fromPairs(Object.entries((_a = instance.proxy) == null ? void 0 : _a.$attrs).filter(([key]) => !allExcludeKeys.value.includes(key) && !(excludeListeners && LISTENER_PREFIX.test(key))));
 | |
|   });
 | |
| };
 | |
| 
 | |
| export { useAttrs };
 | |
| //# sourceMappingURL=index.mjs.map
 |