I must use `/` to close `<input>` tag: ``` <input type="text" class="input" placeholder="please input" /> ``` Otherwise the vdom could not be generated. ``` <input type="text" class="input" placeholder="please input"> ``` But browsers allow us to omit `/`.