5๐
Iโm a noob and had that same problem too. It worked for me when I applied the class to v-main
. Itโs not showing any errors now.
<template>
<v-app>
<v-main class="blue-grey lighten-4">
<Navbar />
<router-view></router-view>
</v-main>
</v-app>
</template>
PS: Itโs my first day on Stack Overflow. ๐
๐คNina
- [Vuejs]-Heroku nuxt production deployment is using staging config vars
- [Vuejs]-Handle methods differently in Vue depending on mobile or not
1๐
You have to move everything in v-content
tag and then change the v-content
class, like below :
<template>
<v-app>
<v-content class="grey lighten-4">
<Navbar />
<router-view></router-view>
</v-content>
</v-app>
</template>
๐คHosseinreza
0๐
<template>
<v-app>
<v-container fluid class="grey lighten-4">
<Navbar />
<v-content class="mx-4">
<router-view></router-view>
</v-content>
</v-container>
</v-app>
</template>
๐คLyde Su
0๐
in App.vue use style
<style scoped>
.theme--light.v-application {
background: #F5F5F5;
}
</style>
Source:stackexchange.com