Just created a fresh Vue3 app, installed Vuetify and I can’t wrap my head around this. Why are there two columns? I want content of my component centered but it just doesn’t make sense at what place the page is divided into two columns if there is absolutely no place where I am using cols or whatever:
My App.vue:
<template>
<v-app>
<Navigation></Navigation>
<v-main>
<!-- Your main content goes here -->
<router-view></router-view>
</v-main>
</v-app>
</template>
<script>
import Navigation from './components/NavigationBase.vue'
export default {
components: {
Navigation
}
}
</script>
Component:
<template>
<div>
<v-container> <v-layout> Your pet rock lives here... </v-layout></v-container>
</div>
</template>
and my index.html:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vite App</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>