Skip to content

Instantly share code, notes, and snippets.

@lega911
Created May 15, 2021 21:09
Show Gist options
  • Save lega911/2824bcb54eab5f9b4dded54c59298944 to your computer and use it in GitHub Desktop.
Save lega911/2824bcb54eab5f9b4dded54c59298944 to your computer and use it in GitHub Desktop.
Example of anchor
<script>
import Child from './Child.xht';
let value = 'text';
const action = (el) => {
el.style.backgroundColor = '#b1daf8';
}
</script>
Value: {value}
<Child>
<^root class="border" />
<^name style="font-weight: bold; color: #ff49ee" />
<^input type="text" *action :value />
</Child>
<style>
.border {border: 1px solid #999; padding: 8px;}
</style>
<div ^root>
<span ^name>Name</span>
<input ^input />
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment