Browse Source

Merge 8624860dd8 into 2fcf1a50b3

pull/26/merge
nisrine 3 months ago
committed by GitHub
parent
commit
dfde37f7d6
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 5
      template/index.html
  2. 5
      template/style.css

5
template/index.html

@ -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>

5
template/style.css

@ -0,0 +1,5 @@
body{
text-align: center;
background-color: rgba(128, 128, 128, 0.441);
color: antiquewhite;
}
Loading…
Cancel
Save