rebuilding-platformsh/src/App.vue

30 lines
744 B
Vue
Raw Normal View History

2019-04-23 20:47:32 +00:00
<template>
2019-05-07 16:39:20 +00:00
<div class="min-h-screen antialiased font-sans bg-gray-200">
2019-04-24 12:18:00 +00:00
<alert-message>
<p>
A clone of <a href="https://platform.sh">Platform.sh</a>s new hosting dashboard.<br class="hidden sm:inline">
2019-04-24 12:18:00 +00:00
Built with <a href="https://vuejs.org">Vue.js</a>
and <a href="https://tailwindcss.com">Tailwind CSS</a>
by <a href="https://www.oliverdavies.uk">Oliver Davies</a>.
</p>
</alert-message>
2019-06-15 21:53:50 +00:00
<router-view :projects="projects" ></router-view>
2019-04-23 20:47:32 +00:00
</div>
</template>
2019-06-14 18:56:08 +00:00
<style src="./assets/css/tailwind.css"></style>
<script>
2020-01-04 22:07:09 +00:00
import projects from './data/projects.json'
export default {
data () {
return {
2019-06-15 21:53:50 +00:00
title: 'Rebuilding Platform.sh',
2020-01-04 22:07:09 +00:00
projects
}
}
}
</script>