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

@@ -22,16 +22,16 @@
<script lang="ts" setup>
interface ImageType {
src: string;
title: string;
link: string;
src: string
title: string
link: string
}
const imageList: ImageType[] = [
{
src: `https://doc.charles7c.top/img/sponsor/ad/roovps.jpg?${new Date().getTime()}`,
title: 'ROOVPS',
link: 'https://roovps.com/cart',
},
];
link: 'https://roovps.com/cart'
}
]
</script>