diff options
author | Aylur <[email protected]> | 2024-10-10 01:35:23 +0000 |
---|---|---|
committer | Aylur <[email protected]> | 2024-10-10 01:35:23 +0000 |
commit | 03f1a08f6e5996e5d3d7ff3952465c9c29b9f624 (patch) | |
tree | a42aa553e71cd56c25c47fd4413fa4370e52ad29 /docs/showcases/Showcases.vue | |
parent | 68b2cdaa8081ad053fd8072ca9eef94cea426b2e (diff) |
docs: add eslint
Diffstat (limited to 'docs/showcases/Showcases.vue')
-rw-r--r-- | docs/showcases/Showcases.vue | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/docs/showcases/Showcases.vue b/docs/showcases/Showcases.vue index 86a17bf..acdf601 100644 --- a/docs/showcases/Showcases.vue +++ b/docs/showcases/Showcases.vue @@ -1,14 +1,18 @@ <script setup lang="ts"> -import showcases from './showcases' -import Showcase from './Showcase.vue' +import showcases from "./showcases" +import Showcase from "./Showcase.vue" </script> <template> <div class="Showcases"> <template v-for="(showcase, index) in showcases" :key="index"> <div v-if="Array.isArray(showcase)" class="row"> - <div v-for="(elem, elemIndex) in showcase" :key="elemIndex" class="item" - :class="`grid-${showcase.length}`"> + <div + v-for="(elem, elemIndex) in showcase" + :key="elemIndex" + class="item" + :class="`grid-${showcase.length}`" + > <Showcase v-bind="elem" /> </div> </div> |