Created
January 26, 2023 14:30
-
-
Save seanogdev/5e78cf5be6abba084993c894cc9ad57f to your computer and use it in GitHub Desktop.
Example useDefaults
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
<script setup> | |
const { themes, aliases } = useDefaults(VBtn, { | |
TwBtnDropdownOption: { | |
variant: 'outlined', | |
class: 'VBtnDropdownOption', | |
height: 40, | |
width: 208, | |
VIcon: { | |
size: 24, | |
}, | |
}, | |
}); | |
</script> | |
<!-- Consumer --> | |
<template> | |
<TwBtnDropdownOption /> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment