Run linter

This commit is contained in:
Matt Isenhower
2023-06-25 20:48:37 -07:00
parent 9bf5ea66f8
commit 6483111690
8 changed files with 8 additions and 8 deletions

View File

@@ -3,7 +3,7 @@
</template>
<script setup>
import { computed } from '@vue/reactivity';
import { computed } from 'vue';
import ruleAreaSvg from '@/assets/img/rules/area.svg';
import ruleAsariSvg from '@/assets/img/rules/asari.svg';

View File

@@ -11,7 +11,7 @@
</template>
<script setup>
import { computed } from '@vue/reactivity';
import { computed } from 'vue';
const props = defineProps({
bg: {

View File

@@ -51,7 +51,7 @@
<script setup>
import { useGearStore } from '@/stores/gear.mjs';
import { computed } from '@vue/reactivity';
import { computed } from 'vue';
import GearCardHorizontal from './GearCardHorizontal.vue';
import ProductContainer from '../ProductContainer.vue';
import SquidTape from '../SquidTape.vue';

View File

@@ -75,7 +75,7 @@
</template>
<script setup>
import { computed } from '@vue/reactivity';
import { computed } from 'vue';
import SquidTape from '../SquidTape.vue';
import { getGesotownGearUrl } from '@/common/links';
import { formatShortDurationFromNow } from '../../common/time';

View File

@@ -89,7 +89,7 @@
</template>
<script setup>
import { computed } from '@vue/reactivity';
import { computed } from 'vue';
import SquidTape from '../SquidTape.vue';
import { getGesotownGearUrl } from '@/common/links';
import { formatShortDurationFromNow } from '../../common/time';

View File

@@ -56,7 +56,7 @@
<script setup>
import { useGearStore } from '@/stores/gear.mjs';
import { computed } from '@vue/reactivity';
import { computed } from 'vue';
import GearCard from './GearCard.vue';
import GearCardHorizontal from './GearCardHorizontal.vue';
import SquidTape from '../SquidTape.vue';

View File

@@ -30,7 +30,7 @@
<script setup>
import { useGearStore } from '@/stores/gear.mjs';
import { computed } from '@vue/reactivity';
import { computed } from 'vue';
import GearCard from '@/components/gear/GearCard.vue';
import ProductContainer from '@/components/ProductContainer.vue';
import SquidTape from '@/components/SquidTape.vue';

View File

@@ -41,7 +41,7 @@
<script setup>
import { useGearStore } from '@/stores/gear.mjs';
import { computed } from '@vue/reactivity';
import { computed } from 'vue';
import GearCard from '@/components/gear/GearCard.vue';
import SquidTape from '@/components/SquidTape.vue';