baked-recipe-admin
Version:
Baked is an opinionated framework for .NET in backend and Nuxt in frontend. This is a recipe package that brings together all the components one needs for an Admin UI.
11 lines (8 loc) • 314 B
JavaScript
import { useId } from 'vue';
function useAttrSelector() {
var prefix = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'pc';
var idx = useId();
return "".concat(prefix).concat(idx.replace('v-', '').replaceAll('-', '_'));
}
export { useAttrSelector };
//# sourceMappingURL=index.mjs.map