Skip to content

Instantly share code, notes, and snippets.

@seanogdev
Created January 26, 2023 14:30
Show Gist options
  • Save seanogdev/5e78cf5be6abba084993c894cc9ad57f to your computer and use it in GitHub Desktop.
Save seanogdev/5e78cf5be6abba084993c894cc9ad57f to your computer and use it in GitHub Desktop.
Example useDefaults
<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