UNPKG

pinia-facing-decorator

Version:
9 lines 282 B
import { defineProperty } from "../utils/libs"; import { PropertyPlugins } from "../utils/constant"; function Plugins(target, key) { if (!target[PropertyPlugins]) { defineProperty(target, PropertyPlugins, []); } target[PropertyPlugins].push(key); } export default Plugins;