Fixed spacing in README

This commit is contained in:
RonnieSan 2018-04-21 19:03:58 -07:00 committed by GitHub
parent 9ef6a44b90
commit 63d3bc3117
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 12 deletions

View File

@ -53,20 +53,20 @@ You can then include the component on your page using the `name` property you se
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>VueJS Component Test</title> <title>VueJS Component Test</title>
<script src="https://unpkg.com/vue"></script> <script src="https://unpkg.com/vue"></script>
<script src="my-component.js"></script> <script src="my-component.js"></script>
</head> </head>
<body> <body>
<div id="wrapper"> <div id="wrapper">
<my-component></my-component> <my-component></my-component>
</div> </div>
<script> <script>
var app = new Vue({ var app = new Vue({
el : '#wrapper' el : '#wrapper'
}); });
</script> </script>
</body> </body>
</html> </html>
``` ```