Created
September 5, 2018 16:46
-
-
Save ThatGuySam/1287e3c6e3460b41f4727a2ea031536e to your computer and use it in GitHub Desktop.
Class groups for default styles built classes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Blade --> | |
<div class="{{ $classList }} {{ $spacingClasses ?? 'm-3' }} {{ $colorClasses ?? 'text-light' }}"> | |
</div> | |
<!-- Vue --> | |
<div :class="`${ classList } ${ spacingClasses || 'm-3' } ${ colorClasses || 'text-light' }`"> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment