network_inventory/frontend/src/App.vue

33 lines
572 B
Vue
Raw Normal View History

2020-11-27 19:30:27 +01:00
<template>
2021-02-15 16:55:27 +01:00
<div>
2021-02-15 22:44:53 +01:00
<the-customers></the-customers>
2021-02-15 16:55:27 +01:00
<the-footer></the-footer>
</div>
2020-11-27 19:30:27 +01:00
</template>
<script>
import TheFooter from "./components/UI/TheFooter.vue";
2021-02-15 22:44:53 +01:00
import TheCustomers from "./components/customers/TheCustomers.vue";
2020-11-27 19:30:27 +01:00
export default {
2021-02-15 16:55:27 +01:00
components: {
TheFooter,
2021-02-15 22:44:53 +01:00
TheCustomers,
2021-02-15 16:55:27 +01:00
},
data() {
return {};
},
2021-01-25 21:00:08 +01:00
};
2020-11-27 19:30:27 +01:00
</script>
<style>
html {
2021-02-15 16:55:27 +01:00
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>