-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (23 loc) · 770 Bytes
/
index.html
File metadata and controls
25 lines (23 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Vue Article Editor</title>
<link rel="stylesheet" href="/your-article-dist-path/article-editor.css">
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script type="module" src="index.js"></script>
</head>
<body>
<h2>One Way Binding</h2>
<div id="app-one">
<article-editor v-model="content" :config="configOptions"></article-editor>
{{ content }}
</div>
<br>
<h2>Two Way Binding</h2>
<div id="app-two">
<article-editor v-model="content" :config="configOptions"></article-editor>
<textarea v-model="content"></textarea>
</div>
</body>
</html>