17 lines
592 B
HTML
17 lines
592 B
HTML
<html>
|
|
<head>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/turbolinks/5.2.0/turbolinks.js" integrity="sha256-iM4Yzi/zLj/IshPWMC1IluRxTtRjMqjPGd97TZ9yYpU=" crossorigin="anonymous"></script>
|
|
<script src="/dist/alpine.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<h1>First Page</h1>
|
|
<a href="turbolinks-manual-test/navigated-away">Second Page</a>
|
|
|
|
<div x-data="{ foo: 'bar' }" id="foo" data-turbolinks-permanent>
|
|
<input x-model="foo"></input>
|
|
|
|
<button x-on:click="foo = 'baz'"></button>
|
|
</div>
|
|
</body>
|
|
</html>
|