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>
Source:stackexchange.com