Here is the code snippet I am currently working with:
<template>
<v-app>
<AppBar></AppBar>
<v-main>
<router-view></router-view>
</v-main>
<Footer></Footer>
</v-app>
</template>
The issue I am facing is that the v-app
component is conflicting with the footer and the navbar, resulting in a solid color overwriting my background image. I need the image to cover the entire layout instead.