From da2accd2f829bc89c398ccc20ee65a09bbf5ef22 Mon Sep 17 00:00:00 2001 From: henrikburmann <haburmann@gmail.com> Date: Tue, 3 May 2022 09:30:21 +0200 Subject: [PATCH] Removed redundant view --- src/components/RentingComponents/NewRent.vue | 1 - src/views/RentingViews/ConfirmRentView.vue | 28 -------------------- 2 files changed, 29 deletions(-) delete mode 100644 src/views/RentingViews/ConfirmRentView.vue diff --git a/src/components/RentingComponents/NewRent.vue b/src/components/RentingComponents/NewRent.vue index 04a62af..3472227 100644 --- a/src/components/RentingComponents/NewRent.vue +++ b/src/components/RentingComponents/NewRent.vue @@ -153,7 +153,6 @@ export default { }; await postNewRent(rent); - console.log(rent); this.confirmed = true; }, }, diff --git a/src/views/RentingViews/ConfirmRentView.vue b/src/views/RentingViews/ConfirmRentView.vue deleted file mode 100644 index d86ea68..0000000 --- a/src/views/RentingViews/ConfirmRentView.vue +++ /dev/null @@ -1,28 +0,0 @@ -<template> - <!-- <new-rent :newRentBox="item" ></new-rent> - --> - <h1>Hei</h1> -</template> - -<script> -// import NewRent from '@/components/RentingComponents/NewRent.vue' -export default { - name: "RentConfirm", - components:{ - // NewRent - }, - data(){ - return{ - // item: null - } - }, - mounted(){ - const item = this.$route.params.data; - console.log("Hieee" + item); - } -} -</script> - -<style> - -</style> \ No newline at end of file -- GitLab