vue-admin-core
Version:
A Component Library for Vue 3
17 lines (14 loc) • 337 B
JavaScript
;
const getPrefixCls = (scope) => {
if (!scope)
return "vac";
return `vac-${scope}`;
};
const getFormilyPrefixCls = (scope) => {
if (!scope)
return "vac-f";
return `vac-f-${scope}`;
};
exports.getFormilyPrefixCls = getFormilyPrefixCls;
exports.getPrefixCls = getPrefixCls;
//# sourceMappingURL=const.js.map