radiator-web/src/App.vue

39 lines
689 B
Vue

<template>
<div>
<v-nav />
<main class="container mx-auto px-2 max-w-7xl sm:px-6">
<router-view></router-view>
</main>
</div>
</template>
<script lang="ts">
import { defineComponent, ref } from "vue";
import VNav from "./components/VNav.vue";
export default defineComponent({
name: "App",
components: {
VNav,
},
setup() {
const message = ref("Hi");
return { message };
},
});
</script>
<style>
@tailwind base;
@tailwind components;
@tailwind utilities;
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
}
</style>