Skip to content

Instantly share code, notes, and snippets.

@mathewsanders
Created February 20, 2016 18:00
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 mathewsanders/40c8231fd96fceaec90a to your computer and use it in GitHub Desktop.
Save mathewsanders/40c8231fd96fceaec90a to your computer and use it in GitHub Desktop.
Design in the browser, activity 11: update index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="default.css">
</head>
<body id="app">
<!-- router-view is a component that gets's swapped out for the component that matches the current route in main.js -->
<router-view></router-view>
<!-- the link to the script that makes vue avaliable on this page -->
<script src="dist/build.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment