16 lines
259 B
Vue
16 lines
259 B
Vue
<template>
|
|
<div id="app" class="flex flex-col flex-1">
|
|
<router-view class="flex flex-col flex-1"></router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {}
|
|
</script>
|
|
|
|
<style>
|
|
@tailwind preflight;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
</style>
|