Vue Footer Component

Footer

Vue footer component is an additional navigation used for displaying general information that a user might want to access from any page within your site. It is a place to display boilerplate text about the site, company info, copyrights, links to a contact form, sitemap, FAQ and other such resources.

Available in Other JavaScript Frameworks

CoreUI Vue Footer Component is also available for Angular, Bootstrap, and React. Explore framework-specific implementations below:

On this page

Examples

vue
<template>
  <CFooter>
    <div>
      <CLink href="https://coreui.io">CoreUI</CLink>
      <span>&copy; 2021 creativeLabs.</span>
    </div>
    <div>
      <span>Powered by</span>
      <CLink href="https://coreui.io">CoreUI</CLink>
    </div>
  </CFooter>
</template>

<script setup>
import { CFooter, CLink } from '@coreui/vue'
</script>