Playground
Spotlight...
⌘KPoem Database
- Remove
+ Addsome text0some text1some text2some text3some text4some text5some text6some text7some text8some text9some text10some text11some text12some text13some textZoom Poems< PreviousNext >Guest BookAdd your name to the guest book if you gave us a visit!Go to developement world 🌎Go to designer world 🌎Go to debugger world 🌎Chat With Me 💬Playwright World 🎭Playground.blocks.todo.js<script type="module">
export default {
data: { title: '', todos: [] }
}
</script>
<template>
<div>
<input x-model="title" />
<template x-for="todo in todos">
<div x-text="todo" />
</template>
</div>
</template>