Created
November 1, 2020 09:04
-
-
Save simonjcarr/48fc0e063a99aee9e57b34c5a5f4076b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="bg-orange-500 h-24 shadow"> | |
<div class="text-3xl text-white p-8">ToDo's</div> | |
</div> | |
<div class="p-8"> | |
<ToDo /> | |
</div> | |
</template> | |
<script> | |
import ToDo from './components/ToDo.vue' | |
export default { | |
name: 'App', | |
components: { | |
ToDo | |
} | |
} | |
</script> | |
<style></style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment