Vueとsvelte :テキスト入力バインディングの比較


テキスト入力バインディング.


テキスト入力バインディングはフォームバインディングで最も簡単です.さらにVueとSvelteで.彼らは、我々のために若干の魔法をします!
チェックイットアウト🚀

反応する


Live Example
const [text, setText] = useState<string>('Hello');

<section>
  <h2>Text Input</h2>
  <input value={text} onChange={(e) => setText(e.target.value)} />
  <p>{text}</p>
</section>

Vue


Live Example
const text: Ref<string> = ref('Hello');

<section>
  <h2>Text Input</h2>
  <input v-model="text" />
  <p>{{ text }}</p>
</section>

スベルト


Live Example
let name: string = 'Hello';

<section>
  <h2>Text Input</h2>
  <input bind:value={name} />
  <p>{name}</p>
</section>