adding initial

This commit is contained in:
2020-03-22 03:16:57 +00:00
parent eda3fa20ce
commit 77bf8f3826
11 changed files with 293 additions and 98 deletions

39
src/components/Appbar.vue Normal file
View File

@@ -0,0 +1,39 @@
<template>
<v-container>
<v-app-bar flat color="indigo" app class="mb-6">
<!-- <template v-slot:img="{ props }">
<v-img bind="props"></v-img>
</template> -->
<v-row>
<v-col>
<v-toolbar-title class="appTitle" d-flex justify-space-around mb-6>
Savvy Firebase tutorial
</v-toolbar-title>
</v-col>
<v-spacer> </v-spacer>
<v-col cols="2">
<v-btn color="primary">
Sign In
</v-btn>
</v-col>
<!-- <v-btn icon="">
<v-icon>
mdi-home
</v-icon>
</v-btn> -->
</v-row>
</v-app-bar>
</v-container>
</template>
<script>
export default {
name: "Appbar"
};
</script>
<style lang="scss" scoped>
.appTitle {
color: white;
}
</style>