Skip to content

Commit

Permalink
chore: run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Boshen committed May 16, 2024
1 parent 806661f commit 2a7ec32
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import Hello from './components/Hello.vue'
import Hello from "./components/Hello.vue";
</script>

<template>
Expand Down
8 changes: 4 additions & 4 deletions src/components/Hello.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<template>
<h1 class="text-3xl">{{msg}}</h1>
<h1 class="text-3xl">{{ msg }}</h1>
</template>

<script lang="ts">
export default {
props: {
msg: String
}
}
msg: String,
},
};
</script>
8 changes: 4 additions & 4 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { createApp } from 'vue'
import App from './App.vue'
import './assets/index.css'
import { createApp } from "vue";
import App from "./App.vue";
import "./assets/index.css";

createApp(App).mount('#app')
createApp(App).mount("#app");
6 changes: 3 additions & 3 deletions src/utils/cn.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { type ClassValue, clsx } from 'clsx'
import { twMerge } from 'tailwind-merge'
import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";

export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
return twMerge(clsx(inputs));
}
2 changes: 1 addition & 1 deletion src/utils/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { cn } from './cn'
export { cn } from "./cn";

0 comments on commit 2a7ec32

Please sign in to comment.