Skip to content

Commit

Permalink
fix: fix stylelint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rudnovd committed Jun 24, 2022
1 parent 7c7e7af commit d3d7986
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions src/components/DamageCalculator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,7 @@ import { HeroInstance } from '@/models/Hero'
import type { Spell } from '@/models/Spell'
import type { Terrain } from '@/models/Terrain'
import { useStore } from '@/store'
import { defineAsyncComponent, defineComponent } from '@vue/runtime-core'
import { computed, PropType, reactive } from 'vue'
import { computed, defineAsyncComponent, defineComponent, PropType, reactive } from 'vue'
import { useI18n } from 'vue-i18n'
export default defineComponent({
Expand Down
5 changes: 2 additions & 3 deletions src/components/HowToUse.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@
</template>
<script lang="ts">
import { computed } from '@vue/reactivity'
import { useTemplateRefsList } from '@vueuse/core'
import { defineComponent, PropType, ref, watch } from 'vue'
import { computed, defineComponent, PropType, ref, watch } from 'vue'
import { useI18n } from 'vue-i18n'
import BaseButton from './base/BaseButton.vue'
import BaseTooltip from './base/BaseTooltip.vue'
Expand Down Expand Up @@ -148,7 +147,7 @@ export default defineComponent({
) as HTMLElement
if (!node) return
let buttons: Array<{ text: string; action: () => unknown }> = []
const buttons: Array<{ text: string; action: () => unknown }> = []
if (step.value === props.steps.length - 1 && index === stepsWithText.length - 1) {
buttons.push({
Expand Down

0 comments on commit d3d7986

Please sign in to comment.