Skip to content

Commit 35e79ed

Browse files
committed
chore: fix eslint issues
1 parent c62e6b7 commit 35e79ed

File tree

20 files changed

+54
-47
lines changed

20 files changed

+54
-47
lines changed

packages/storybook-nuxt/playground/components/PinButton.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function onClick() {
4343

4444
<template>
4545
<div class="storybook storybook-button">
46-
<MyButton label="" class="classes" :style="style" @click="onClick">
46+
<MyButton label="" :class="classes" :style="style" @click="onClick">
4747
<slot />
4848
</MyButton>
4949
</div>

packages/storybook-nuxt/playground/components/pinia/index.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
<!-- eslint-disable vue/multi-word-component-names -->
12
<script setup lang="ts">
23
import PiniaLogo from '~/components/PiniaLogo.vue'
34
4-
const props = defineProps({
5+
defineProps({
56
msg: {
67
type: String,
78
required: true,

packages/storybook-nuxt/playground/components/vuetify/index.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!-- eslint-disable vue/multi-word-component-names -->
12
<script setup>
23
defineProps({
34
message: String,

packages/storybook-nuxt/playground/pages/about.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!-- eslint-disable vue/multi-word-component-names -->
12
<script setup>
23
defineProps({
34
msg: String,
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!-- eslint-disable vue/multi-word-component-names -->
12
<template>
23
<div>test-{{ $route.params.id }}</div>
34
</template>

packages/storybook-nuxt/playground/pages/index.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!-- eslint-disable vue/multi-word-component-names -->
12
<script setup>
23
defineProps({
34
msg: String,

packages/storybook-nuxt/playground/pages/parent.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!-- eslint-disable vue/multi-word-component-names -->
12
<template>
23
<div>
34
Parent
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!-- eslint-disable vue/multi-word-component-names -->
12
<template>
23
<div>Parent/b</div>
34
</template>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!-- eslint-disable vue/multi-word-component-names -->
12
<template>
23
<div>Parent/index</div>
34
</template>

0 commit comments

Comments
 (0)