Added info snackbars

This commit is contained in:
Kamil Klecha
2021-10-19 22:38:37 +02:00
parent 9dfa29081b
commit 1a56edde49
7 changed files with 110 additions and 6 deletions

View File

@@ -23,6 +23,7 @@
</v-col>
</v-row>
</v-main>
<Snackbars />
</v-app>
</template>
@@ -30,11 +31,13 @@
import { Component, Vue } from "vue-property-decorator";
import Login from "@/views/Login.vue";
import Forecast from "@/views/Forecast.vue";
import Snackbars from "@/components/Snackbar.vue"
@Component({
components: {
Login,
Forecast,
Snackbars,
},
})
export default class App extends Vue {