Created
March 20, 2018 10:12
-
-
Save jacky810124/9b6712ce10c4618ae7ebe259cca34b58 to your computer and use it in GitHub Desktop.
PWA Day02 Web Server For Chrome
This file contains hidden or 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"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta name="theme-color" content="#FFFFFF"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<link rel="manifest" href="/manifest.json"> | |
<link rel="icon" type="image/png" sizes="32x32" href="/icons/favicon-32x32.png"> | |
<link rel="icon" type="image/png" sizes="16x16" href="/icons/favicon-16x16.png"> | |
<link rel="shortcut icon" href="/icons/favicon.ico"> | |
<title>好想訂飲料</title> | |
</head> | |
<body> | |
<div id="app"> | |
<nav-bar></nav-bar> | |
<div class="container"> | |
<router-view></router-view> | |
</div> | |
</div> | |
<script src="/app.js"></script> | |
</body> | |
</html> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment