Vueとsvelte :テキスト入力バインディングの比較
4685 ワード
テキスト入力バインディング.
テキスト入力バインディングはフォームバインディングで最も簡単です.さらに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>
Reference
この問題について(Vueとsvelte :テキスト入力バインディングの比較), 我々は、より多くの情報をここで見つけました https://dev.to/ccreusat/react-vue-and-svelte-comparing-text-input-binding-2lccテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol