Fixed spacing in README

This commit is contained in:
RonnieSan 2018-04-21 19:04:26 -07:00 committed by GitHub
parent 63d3bc3117
commit 32a80c2047
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>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>VueJS Component Test</title>
<script src="https://unpkg.com/vue"></script>
<script src="my-component.js"></script>
<meta charset="UTF-8">
<title>VueJS Component Test</title>
<script src="https://unpkg.com/vue"></script>
<script src="my-component.js"></script>
</head>
<body>
<div id="wrapper">
<my-component></my-component>
</div>
<script>
var app = new Vue({
el : '#wrapper'
});
</script>
<div id="wrapper">
<my-component></my-component>
</div>
<script>
var app = new Vue({
el : '#wrapper'
});
</script>
</body>
</html>
```