AdminForth Components Library
AFCL is a set of components which you can use as build blocks in your AdminForth application. AFCL allows to keep the design consistent with minimal efforts and build new pages faster. AFCL components follow styling standard and respect theme colors.
Components set is always growing, so you can expect new components to be added in the future.
Button
import { Button } from '@/afcl'
<Button @click="doSmth"
:loader="false" class="w-full">
Your button text
</Button>
<Button @click="doSmth"
:loader="true" class="w-full mt-4">
Your button text
</Button>

loader prop would show loader when it's true.