16 lines
346 B
Plaintext
16 lines
346 B
Plaintext
page ClientOnly {
|
|
layout = "public"
|
|
render = "client"
|
|
hydrate = "load"
|
|
|
|
state count: number = 0
|
|
|
|
view {
|
|
<section class="wire-card stack">
|
|
<p class="wire-badge">Mounted in the browser</p>
|
|
<h1>Client-only page</h1>
|
|
<button type="button" class="wire-btn" @click="count++">Count: {count}</button>
|
|
</section>
|
|
}
|
|
}
|