network_inventory/frontend/src/App.vue

14 lines
153 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>
</div>
2020-11-27 19:30:27 +01:00
</template>
<script>
export default {
2021-01-25 21:00:08 +01:00
data() {
return {};
},
};
2020-11-27 19:30:27 +01:00
</script>