Skip to content

Instantly share code, notes, and snippets.

@dskecse
Last active May 26, 2017 12:53
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 dskecse/a410731f014971e000bbd4ba9ce97ac6 to your computer and use it in GitHub Desktop.
Save dskecse/a410731f014971e000bbd4ba9ce97ac6 to your computer and use it in GitHub Desktop.
Vue.js app template
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Vue.js App Template Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<main id="app">
</main>
<script src="https://unpkg.com/vue@2.3.3/dist/vue.min.js"></script>
<script>
new Vue({
el: "#app",
data: {
}
});
</script>
</body>
</html>
body {
font-family: "PT Sans", sans-serif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment