Last active
May 26, 2017 12:53
-
-
Save dskecse/a410731f014971e000bbd4ba9ce97ac6 to your computer and use it in GitHub Desktop.
Vue.js app template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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/[email protected]/dist/vue.min.js"></script> | |
<script> | |
new Vue({ | |
el: "#app", | |
data: { | |
} | |
}); | |
</script> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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