refactor: eslint src --fix

This commit is contained in:
2024-04-15 20:35:37 +08:00
parent c75c7092bd
commit 7ecfbb9c15
38 changed files with 187 additions and 227 deletions

View File

@@ -1,12 +1,12 @@
<template>
<div class="gi-footer">{{appStore.getCopyright()}}</div>
<div class="gi-footer">{{ appStore.getCopyright() }}</div>
</template>
<script lang="ts" setup>
import Dayjs from 'dayjs'
import {useAppStore} from "@/stores";
import { useAppStore } from '@/stores'
const appStore = useAppStore();
const appStore = useAppStore()
defineOptions({ name: 'GiFooter' })