feat: add vue/html-self-closing eslint

This commit is contained in:
xiaoxian521
2022-03-21 15:40:29 +08:00
parent 7beb3e63fe
commit 997711b264
39 changed files with 121 additions and 144 deletions

View File

@@ -13,7 +13,7 @@ const url = ref(`${VITE_PUBLIC_PATH}html/button.html`);
<span class="font-medium">通过iframe引入按钮页面</span>
</div>
</template>
<iframe :src="url" frameborder="0" class="iframe"></iframe>
<iframe :src="url" frameborder="0" class="iframe" />
</el-card>
</template>

View File

@@ -101,7 +101,7 @@ function changeDirection(val) {
>
<ul class="item">
<li v-for="(item, index) in listData" :key="index">
<span class="title" v-text="item.title"></span>
<span class="title" v-text="item.title" />
</li>
</ul>
</SeamlessScroll>

View File

@@ -40,7 +40,7 @@ onMounted(() => {
>
</div>
</template>
<div id="mse"></div>
<div id="mse" />
</el-card>
</template>