rebuilding-platformsh/src/App.vue

30 lines
744 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="min-h-screen antialiased font-sans bg-gray-200">
<alert-message>
<p>
A clone of <a href="https://platform.sh">Platform.sh</a>s new hosting dashboard.<br class="hidden sm:inline">
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>
<router-view :projects="projects" ></router-view>
</div>
</template>
<style src="./assets/css/tailwind.css"></style>
<script>
import projects from './data/projects.json'
export default {
data () {
return {
title: 'Rebuilding Platform.sh',
projects
}
}
}
</script>