first commit

This commit is contained in:
Yu Sung
2023-08-04 23:02:15 +09:00
commit c60930a566
83 changed files with 38615 additions and 0 deletions

41
src/App.vue Normal file
View File

@@ -0,0 +1,41 @@
<template>
<v-app>
<v-app-bar
app
clipped-left
color="primary"
dark
>
<v-spacer />
<v-toolbar-title>요즘 관리자</v-toolbar-title>
<v-spacer />
</v-app-bar>
<v-main>
<router-view />
</v-main>
</v-app>
</template>
<style lang="scss">
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
}
#nav {
padding: 30px;
a {
font-weight: bold;
color: #2c3e50;
&.router-link-exact-active {
color: #42b983;
}
}
}
</style>