network_inventory/frontend/src/App.vue

33 lines
585 B
Vue
Raw Normal View History

2020-11-27 19:30:27 +01:00
<template>
2021-01-25 21:00:08 +01:00
<div>
<customer></customer>
<the-footer></the-footer>
2021-01-25 21:00:08 +01:00
</div>
2020-11-27 19:30:27 +01:00
</template>
<script>
import TheFooter from "./components/UI/TheFooter.vue";
import Customer from "./components/Customers.vue";
2020-11-27 19:30:27 +01:00
export default {
components: {
TheFooter,
Customer,
},
2021-01-25 21:00:08 +01:00
data() {
return {};
},
};
2020-11-27 19:30:27 +01:00
</script>
<style>
html {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>