-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (42 loc) · 1.77 KB
/
index.html
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<title>PageFlow</title>
<!-- Importing CSS -->
<link rel="stylesheet" type="text/css" href="dist/PageFlow.css">
<link rel="stylesheet" type="text/css" href="dist/App.css">
</head>
<body>
<App>
<DynamicPage>
<div>
<a href="/">First Link</a>
<a href="/second.html">Second Link</a>
<a href="/third.html">Third Link</a>
</div>
Index Page
<div class="myParent"></div>
<div class="myParent2">
<a html class="is-counter" @ref="11" @update="44" @trigger="click" callback="testCallback" defaultcallback="defaultCallback">{{ switchName }}</a>
<label class="label">
<input html @ref="12" @update="11" @trigger="input" callback="testCallback" postcallback="testCallback" defaultcallback="defaultCallback" @parent=".label" value="" placeholder="test" />
<button html @ref="44" @update="12,11" @trigger="click" @parent=".label" postcallback="clearCallback" defaultcallback="defaultCallback">{{ switchName }}</button>
</label>
</div>
</DynamicPage>
</App>
<App2>
<DynamicPage>
<div class="myParent"></div>
<div class="myParent2"></div>
</DynamicPage>
</App2>
<dataset data-set="objectname">
<data data-collection="variable-name" data-value="attribute-data" />
<data data-collection="variable-name2" data-value="attribute-data2" />
<data data-collection="variable-name3" data-value="attribute-data3" />
</dataset>
<!-- Importing JavaScript -->
<script src="dist/App.js"></script>
</body>
</html>