You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
538 B
Plaintext

<div vg-attr='utils.AttributesAppend{AttrMap: c.AttrMap}'>
<span vg-content="c.Name"></span><br>
<span vg-content="c.Street">Musterstraße 123</span><br>
<span vg-content="c.PostalCode">12345</span> <span vg-content="c.City">Musterstadt</span><br>
<span vg-content="c.Country">Deutschland</span>
</div>
<script type="application/x-go">
import (
"git.d3nexus.de/Dadido3/D3vugu-components/utils"
)
type ComponentAddress struct {
AttrMap vugu.AttrMap
Name, Street, PostalCode, City, Country string `vugu:"data"`
}
</script>