[Vuejs]-Trying to create a global Footer component and importing into my Vue.js file

1👍

Put footer inside <template>

Code is here

I don’t think you need createApp

simply put like this <Footer /> in your App.vue inside the <templete> tag

<template>
  Hello World!
  <Footer />
</template>

Hello World! is your main content, Footer is your footer content or breadcrumb content

Same way you can add header if you have Header.vue

<template>
  <Header />
  Hello World!
  <Footer />
</template>

Leave a comment