Created
May 15, 2021 21:09
-
-
Save lega911/2824bcb54eab5f9b4dded54c59298944 to your computer and use it in GitHub Desktop.
Example of anchor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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