<template>
<v-layout class="rounded rounded-md">
<v-app-bar title="Application bar"></v-app-bar>
<v-navigation-drawer>
<v-list>
<v-list-item title="Navigation drawer"></v-list-item>
</v-list>
</v-navigation-drawer>
<v-main class="d-flex align-center justify-center" style="min-height: 300px;">
Main Content
</v-main>
</v-layout>
</template>
<template>
<v-layout class="rounded rounded-md">
<v-app-bar title="Application bar">
</v-app-bar>
<v-navigation-drawer>
<v-list>
<v-list-item title="Navigation drawer"></v-list-item>
</v-list>
</v-navigation-drawer>
<v-main class="d-flex align-center justify-center" style="min-height: 300px;">
Main Content
</v-main>
</v-layout>
</template>
<script>
export default {
name: 'HelloWorld',
data: () => ({
}),
}
</script>
flex justify : https://vuetifyjs.com/en/styles/flex/
<template>
<v-layout class="rounded rounded-md">
<v-app-bar title="Application bar">
<div class="d-flex justify-end mb-6 bg-surface-variant">
<v-sheet
v-for="n in 3"
:key="n"
class="ma-2 pa-2"
>
justify-end
</v-sheet>
</div>
</v-app-bar>
<v-navigation-drawer>
<v-list>
<v-list-item title="Navigation drawer"></v-list-item>
</v-list>
</v-navigation-drawer>
<v-main class="d-flex align-center justify-center" style="min-height: 300px;">
Main Content
</v-main>
</v-layout>
</template>
<script>
export default {
name: 'HelloWorld',
data: () => ({
}),
}
</script>
git config --global core.autocrlf true
를 설정kang@DESKTOP-P0G8MJ1 MINGW64 ~/Desktop/Toy Project/Toy-Project (feature)
$ git commit -m "초기 환경설정 구성 완료
> Back : Java17, SpringBoot
> Front : Vue3, Vuetify
> Front Vuetify layout 적용"
git push
feature 구성 완료
feature 브랜치 develop으로 반영 (Compare & pull request)
Create pull request, Write에는 Commit 메세지를 적어준다.
Merge pull request
Merge 확인