Created
August 2, 2018 03:46
-
-
Save slmanju/db22e0c365b594273e05f2820461df9a 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 id="app"> | |
<div> | |
<h3>Todo List</h3> | |
<div id="todo"> | |
<label for="newtodo">Todo</label> | |
<input type="text" id="newtodo" /> | |
</div> | |
<div id="todo-list"> | |
<ul> | |
<li>Todo 1</li> | |
<li>Todo 2</li> | |
<li>Todo 3</li> | |
</ul> | |
</div> | |
</div> | |
</div> | |
</template> | |
<script> | |
export default { | |
name: 'App', | |
} | |
</script> | |
<style> | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment