build: eslint에서 vue/setup-compiler-macros 활성화

- 필요없어진 import 제거
This commit is contained in:
2022-03-28 22:31:10 +09:00
parent e09709651c
commit e569ffe8f4
7 changed files with 9 additions and 7 deletions
+1 -1
View File
@@ -124,7 +124,7 @@ import { SammoAPI, type ValidResponse } from "@/SammoAPI";
import { joinYearMonth } from '@/util/joinYearMonth';
import { parseYearMonth } from '@/util/parseYearMonth';
import { isString, range, sum } from 'lodash';
import { ref, defineProps, defineEmits, type PropType, watch } from "vue";
import { ref, type PropType, watch } from "vue";
type BettingDetailResponse = ValidResponse & {
bettingInfo: BettingInfo;
+1 -1
View File
@@ -289,7 +289,7 @@ toggleTurn(...$event);
<script lang="ts" setup>
import addMinutes from "date-fns/esm/addMinutes";
import { stringifyUrl } from "query-string";
import { defineProps, defineEmits, defineExpose, onMounted, ref, watch, type PropType, inject } from "vue";
import { onMounted, ref, watch, type PropType, inject } from "vue";
import { formatTime } from "@util/formatTime";
import { joinYearMonth } from "@util/joinYearMonth";
import { mb_strwidth } from "@util/mb_strwidth";
+1 -1
View File
@@ -67,7 +67,7 @@
<script setup lang="ts">
import type { CommandItem } from "@/defs";
import { BButton } from "bootstrap-vue-3";
import { ref, defineProps, defineEmits, defineExpose, type PropType, watch, onMounted } from "vue";
import { ref, type PropType, watch, onMounted } from "vue";
interface CategoryDecoration {
name: string,
+1 -1
View File
@@ -4,7 +4,7 @@
<script lang="ts" setup>
import { addMilliseconds } from 'date-fns';
import { defineProps, type PropType, ref, onMounted, watch } from 'vue';
import { type PropType, ref, onMounted, watch } from 'vue';
import { formatTime } from '@/util/formatTime';
const props = defineProps({
serverTime: {