-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
22 lines (17 loc) · 763 Bytes
/
profile.html
File metadata and controls
22 lines (17 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<template>
<div>
<form data-call="handleForm()">
<input type="text" placeholder="username" name="username">
<button type="submit">Login</button>
</form>
<button data-call="changePage('home')">Home</button>
<button data-call="changePage('about')">About</button>
<button data-call="changePage('imprint')">Imprint</button>
<button data-call="changePage('mama')">Mama</button>
<button data-call="clearHistory">Clear History</button>
<h1>History: ${{historyString}}</h1>
<h1 data-for="a in testData" data-call="test('${{a.name}})'">${{a.name}}</h1>
<div data-load-component="${{page}}"></div>
<script src="test.js"></script>
</div>
</template>