Skip to content

Commit

Permalink
docs: specify major version for webcomponent
Browse files Browse the repository at this point in the history
  • Loading branch information
neferin12 committed Aug 15, 2023
1 parent ba4cc80 commit fcacffc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ Can be used as a webcomponent. The form data will be posted to a given endpoint.
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="https://unpkg.com/@educorvi/vue-json-form/dist/webcomponent/dist.css">
<link rel="stylesheet" href="https://unpkg.com/@educorvi/vue-json-form@^2/dist/webcomponent/dist.css">
</head>
<body>
<!-- json: Your JSON Schema -->
Expand All @@ -129,7 +129,7 @@ Can be used as a webcomponent. The form data will be posted to a given endpoint.
></vue-json-form>


<script src="https://unpkg.com/@educorvi/vue-json-form/dist/webcomponent/dist.umd.min.js"></script>
<script src="https://unpkg.com/@educorvi/vue-json-form/dist/webcomponent@^2/dist.umd.min.js"></script>
</body>
</html>
```
Expand Down
4 changes: 2 additions & 2 deletions webcomponent_example.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="https://unpkg.com/@educorvi/vue-json-form/dist/webcomponent/dist.css">
<link rel="stylesheet" href="https://unpkg.com/@educorvi/vue-json-form@^2/dist/webcomponent/dist.css">
</head>
<body>
<vue-json-form
Expand All @@ -12,6 +12,6 @@
></vue-json-form>


<script src="https://unpkg.com/@educorvi/vue-json-form/dist/webcomponent/dist.umd.min.js"></script>
<script src="https://unpkg.com/@educorvi/vue-json-form@^2/dist/webcomponent/dist.umd.min.js"></script>
</body>
</html>

0 comments on commit fcacffc

Please sign in to comment.