Files
PointCloudWeb/PointCloudWeb.Web/src/App.vue
2021-07-31 22:34:01 +02:00

24 lines
393 B
Vue

<template>
<div id="nav">
<Navbar />
<router-view />
</div>
</template>
<script>
import Navbar from "@/components/Navbar.vue";
export default {
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>