add trunk dist under git

This commit is contained in:
Mikaël Cluseau
2026-01-22 17:55:23 +01:00
parent 3085dac359
commit f2b23df97b
9 changed files with 17098 additions and 0 deletions

View File

@ -0,0 +1,14 @@
const Host = {
components: { Downloads },
props: [ 'host', 'token', 'state' ],
template: `
<p>Cluster: {{ host.Cluster }}<template v-if="host.Template"> ({{ host.Template }})</template></p>
<p>IPs:
<code v-for="ip in host.IPs">
{{ ip }}{{" "}}
</code>
</p>
<h3>Downloads</h3>
<Downloads :token="token" :state="state" kind="host" :name="host.Name" />
`
}