coding / WebIDE

Coding WebIDE Community Edition
https://ide.coding.net/community
BSD 3-Clause "New" or "Revised" License
1.71k stars 411 forks source link

Vue 文件中的HTML标签 正常情况下提示错误 #328

Closed 502647092 closed 6 years ago

502647092 commented 6 years ago

image

rikkizhu commented 6 years ago
<template>
    <section class='container'>
        <h1 class=''title>
            用户反馈
        </h1>
        <span class="txt">版本</span>
        <input v-model='version' class="input" />

        <span class="txt">SessionID</span>
        <input v-model='session_id' class="input" />

        <span class="txt">分数</span>
        <input v-model='score' class="input" />

    </section>
</template>

image

502647092 commented 6 years ago

我.... 那.... 为何.... input 为何就不能用 <input></input>

vangie commented 6 years ago

https://stackoverflow.com/questions/38498799/input-tag-html-with-close-tag-or-not https://teamtreehouse.com/community/form-input-does-not-have-closing-tag http://xahlee.info/js/html5_non-closing_tag.html

502647092 commented 6 years ago

= = 谢谢了