Skip to content

Instantly share code, notes, and snippets.

@mysteriousHerb
Last active June 2, 2019 19:19
Show Gist options
  • Save mysteriousHerb/2e4c432f2fc702138420529d40e79062 to your computer and use it in GitHub Desktop.
Save mysteriousHerb/2e4c432f2fc702138420529d40e79062 to your computer and use it in GitHub Desktop.
src/views/todo.vue
<template>
<div class="todo">
<todo_comp/>
</div>
</template>
<script>
// @ is an alias to /src
import todo_comp from '@/components/todo_comp.vue'
export default {
name: 'todo',
components: {
todo_comp,
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment