Files
PointCloudWeb/PoinCloudWeb.Web/src/App.vue
Tim Wundenberg e12bbaaf9f add skeleton
2021-07-28 20:19:05 +02:00

24 lines
406 B
Vue

<template>
<div id="nav">
<Navbar />
<router-view />
</div>
</template>
<script>
import Navbar from "@/components/Navbar.vue";
export default {
setup() {},
components: { Navbar },
};
</script>
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
}
</style>