UNPKG

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.

17 lines (12 loc) 264 B
import * as components from "@@/.baked/components"; export default function() { function resolve(type, fallback) { type = `Lazy${type}`; return components[type] ? components[type] : components[fallback]; } return { resolve }; }