Skip to main content
Create new
Introduction
Reactivity
Props
Logic
Events
Bindings
Lifecycle
Stores
Motion
Transitions
Animations
Easing
SVG
Actions
Classes
Component composition
Context API
Special elements
Module context
Debugging
7GUIs
Miscellaneous
App.svelte
data.svelte.js
<script>
import { Data } from './data.svelte.js';
let data = $state(new Data());
function add() {
alert(`登録! ${data.name}${data.age}`);
data = new Data();
}
</script>

<div>
<label>
<span>名前</span>
<input bind:value={data.name} />
<span class="error">{data.errors.name}</span>
</label>
</div>
<div>
<label>
<span>年齢</span>
<input bind:value={data.age} />
<span class="error">{data.errors.age}</span>
</label>
</div>
<button disabled={!data.isValid()} onclick={add}>登録</button>

<style>
div {
margin-bottom: .5rem;
}
.error {
color: red;
display:block;
height: 1.5rem;
margin-left: 2.5rem;
}
</style>
loading Svelte compiler...
/* Select a component to see its compiled code */
result = svelte.compile(source, {
generate: ,
});
/* Select a component to see its compiled code */