前端eslint调整

This commit is contained in:
piexlMax
2023-09-14 18:47:47 +08:00
parent 636204bbaf
commit a4f86354d3
64 changed files with 3302 additions and 1096 deletions

View File

@@ -1,9 +1,17 @@
<template>
<el-tabs v-model="activeName">
<el-tab-pane v-for="(item, key) in previewCode" :key="key" :label="key" :name="key">
<div :id="key" class="h-[50vh] bg-white px-5 overflow-y-scroll" />
</el-tab-pane>
</el-tabs>
<el-tabs v-model="activeName">
<el-tab-pane
v-for="(item, key) in previewCode"
:key="key"
:label="key"
:name="key"
>
<div
:id="key"
class="h-[50vh] bg-white px-5 overflow-y-scroll"
/>
</el-tab-pane>
</el-tabs>
</template>
<script setup>
@@ -72,10 +80,3 @@ const copy = () => {
defineExpose({ copy })
</script>
<script>
export default {
}
</script>