Skip to content

Instantly share code, notes, and snippets.

@slmanju
Created August 2, 2018 04:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slmanju/224dedfe15c2d2aafdd8fc06283ebdb5 to your computer and use it in GitHub Desktop.
Save slmanju/224dedfe15c2d2aafdd8fc06283ebdb5 to your computer and use it in GitHub Desktop.
<template>
<div id="app">
<div>
<h3>Todo List</h3>
<todo/>
<todo-list></todo-list>
</div>
</div>
</template>
<script>
import Todo from './components/Todo.vue'
import TodoList from './components/TodoList.vue'
export default {
name: 'App',
components: {
Todo,
TodoList
}
}
</script>
<style>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment