This repository has been archived on 2025-01-07. You can view files and clone it, but cannot push or open issues or pull requests.
rebuilding-acquia/src/App.vue

16 lines
259 B
Vue
Raw Normal View History

2018-12-21 18:16:43 +00:00
<template>
2018-12-24 13:34:45 +00:00
<div id="app" class="flex flex-col flex-1">
<router-view class="flex flex-col flex-1"></router-view>
2018-12-21 18:16:43 +00:00
</div>
</template>
<script>
2018-12-23 13:17:39 +00:00
export default {}
2018-12-21 18:16:43 +00:00
</script>
<style>
2018-12-21 21:58:12 +00:00
@tailwind preflight;
@tailwind components;
@tailwind utilities;
2018-12-21 18:16:43 +00:00
</style>