nisrine
3 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
8 additions and
2 deletions
-
template/index.html
-
template/style.css
|
@ -2,13 +2,14 @@ |
|
|
<html> |
|
|
<html> |
|
|
<head> |
|
|
<head> |
|
|
<title>Welcome to Vue</title> |
|
|
<title>Welcome to Vue</title> |
|
|
|
|
|
<link rel="stylesheet" href="style.css"> |
|
|
<script src="https://unpkg.com/vue"></script> |
|
|
<script src="https://unpkg.com/vue"></script> |
|
|
</head> |
|
|
</head> |
|
|
<body> |
|
|
<body> |
|
|
<div id="app"> |
|
|
<div id="app"> |
|
|
<img src="https://vuejs.org/images/logo.png" alt="Vue logo"> |
|
|
<img src="https://vuejs.org/images/logo.png" alt="Vue logo"> |
|
|
<h1>\{{ greeting }}</h1> |
|
|
<h1>\{{ greeting }}</h1> |
|
|
<ul> |
|
|
|
|
|
|
|
|
<ol> |
|
|
<li> |
|
|
<li> |
|
|
To learn more about Vue, visit |
|
|
To learn more about Vue, visit |
|
|
<a :href="docsURL" target="_blank"> |
|
|
<a :href="docsURL" target="_blank"> |
|
@ -27,7 +28,7 @@ |
|
|
the forum |
|
|
the forum |
|
|
</a> |
|
|
</a> |
|
|
</li> |
|
|
</li> |
|
|
</ul> |
|
|
|
|
|
|
|
|
</ol> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<script> |
|
|
<script> |
|
|
|
@ -0,0 +1,5 @@ |
|
|
|
|
|
body{ |
|
|
|
|
|
text-align: center; |
|
|
|
|
|
background-color: rgba(128, 128, 128, 0.441); |
|
|
|
|
|
color: antiquewhite; |
|
|
|
|
|
} |