Skip to content

Instantly share code, notes, and snippets.

@CayoSouza
Last active April 6, 2020 01:59
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 CayoSouza/9d1e0e1b94d775b69a0a1e085ca2d158 to your computer and use it in GitHub Desktop.
Save CayoSouza/9d1e0e1b94d775b69a0a1e085ca2d158 to your computer and use it in GitHub Desktop.
Vue Todo List Tutorial: Base HTML Template
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="CayoSouza">
<title>Vue.js Todo List Tutorial</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main id="app">
<header>
<h2>Vue.js Todo List</h2>
</header>
</main>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="todo.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment