Skip to content

Instantly share code, notes, and snippets.

@thiagodomingues
Created August 7, 2020 11:19
Show Gist options
  • Save thiagodomingues/8d806d9d70ffa1d1d6ca97b0354041d9 to your computer and use it in GitHub Desktop.
Save thiagodomingues/8d806d9d70ffa1d1d6ca97b0354041d9 to your computer and use it in GitHub Desktop.
Responsividade no botão conforme o tamanho da tela. Vuejs
<v-btn v-bind="size"><v-icon left v-bind="size">mdi-home</v-icon> Button</v-btn>
computed: {
size () {
const size = {xs:'x-small', sm:'small', lg:'large', xl:'x-large'}
[this.$vuetify.breakpoint.name];
return size ? { [size]: true } : {}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment