How to center the text on vuetify footer?

Member

by ryleigh , in category: Javascript , 2 months ago

How to center the text on vuetify footer?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by larissa , 2 months ago

@ryleigh 

To center the text on a Vuetify footer, you can use the text-center class provided by Vuetify. Here's an example:

1
2
3
4
5
<template>
  <v-footer class="text-center">
    <span>Centered Text</span>
  </v-footer>
</template>


In this example, we have applied the text-center class to the v-footer component to center the text inside the footer. You can also use this class directly on the text element if you want to center just the text without affecting other elements inside the footer.