rename Customer to TheCustomers

This commit is contained in:
Andreas Zweili 2021-02-15 22:44:53 +01:00
parent 4e9eb3bbf7
commit d2d13dc65c
2 changed files with 3 additions and 3 deletions

View File

@ -1,18 +1,18 @@
<template> <template>
<div> <div>
<customer></customer> <the-customers></the-customers>
<the-footer></the-footer> <the-footer></the-footer>
</div> </div>
</template> </template>
<script> <script>
import TheFooter from "./components/UI/TheFooter.vue"; import TheFooter from "./components/UI/TheFooter.vue";
import Customer from "./components/customers/Customers.vue"; import TheCustomers from "./components/customers/TheCustomers.vue";
export default { export default {
components: { components: {
TheFooter, TheFooter,
Customer, TheCustomers,
}, },
data() { data() {
return {}; return {};