Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions template/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@
<html>
<head>
<title>Welcome to Vue</title>
<link rel="stylesheet" href="style.css">
<script src="https://unpkg.com/vue"></script>
</head>
<body>
<div id="app">
<img src="https://vuejs.org/images/logo.png" alt="Vue logo">
<h1>\{{ greeting }}</h1>
<ul>
<ol>
<li>
To learn more about Vue, visit
<a :href="docsURL" target="_blank">
Expand All @@ -27,7 +28,7 @@ <h1>\{{ greeting }}</h1>
the forum
</a>
</li>
</ul>
</ol>
</div>

<script>
Expand Down
5 changes: 5 additions & 0 deletions template/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
body{
text-align: center;
background-color: rgba(128, 128, 128, 0.441);
color: antiquewhite;
}