Skip to content

Commit 39d627e

Browse files
committed
chore: lint
1 parent 691dea0 commit 39d627e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script lang="ts">
2-
import Watermark from '@/code/components/Watermark.vue';
32
import type { Language } from '@/code/types/language'
43
import type { Size } from '@/code/types/size'
4+
import Watermark from '@/code/components/Watermark.vue'
55
import { camera as cameraIcon, moon as moonIcon, sun as sunIcon } from '@/icons'
66
77
const app = tv({

src/code/components/Watermark.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const ui = computed(() => watermark({ class: props.class }))
2222
</script>
2323

2424
<template>
25-
<p :class="ui" v-if="text">
25+
<p v-if="text" :class="ui">
2626
{{ text }}
2727
</p>
2828
</template>

vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import { fileURLToPath } from 'node:url'
33
import Tailwind from '@tailwindcss/vite'
44
import Vue from '@vitejs/plugin-vue'
55
import AutoImport from 'unplugin-auto-import/vite'
6+
import Fonts from 'unplugin-fonts/vite'
67
import Components from 'unplugin-vue-components/vite'
78
import { defineConfig } from 'vite'
89
import VueDevTools from 'vite-plugin-vue-devtools'
9-
import Fonts from 'unplugin-fonts/vite'
1010

1111
export default defineConfig({
1212
plugins: [

0 commit comments

Comments
 (0)