mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
21 lines
361 B
Vue
21 lines
361 B
Vue
<template>
|
|
<v-app top-toolbar footer>
|
|
<v-toolbar>
|
|
<v-toolbar-title>Toolbar</v-toolbar-title>
|
|
</v-toolbar>
|
|
<main>
|
|
<v-content>
|
|
<v-container fluid>
|
|
<div class="title">Main Content</div>
|
|
</v-container>
|
|
</v-content>
|
|
</main>
|
|
</v-app>
|
|
</template>
|
|
|
|
<style>
|
|
.title {
|
|
padding-left: 14px;
|
|
}
|
|
</style>
|