Skip to content

Commit

Permalink
style(site): use ~ imports in vue sfc
Browse files Browse the repository at this point in the history
  • Loading branch information
DGCK81LNN committed Nov 2, 2023
1 parent ca472de commit ff3840f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion site/components/transcriber.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
</style>

<script setup lang="ts">
import type { Format, VisualResult } from "utils/transcribe"
import type { Format, VisualResult } from "~/utils/transcribe"
const options: { text: string; value: Format }[] = [
{ text: "汉字", value: "hanzi" },
Expand Down
2 changes: 1 addition & 1 deletion site/components/visualized-alternations.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import type { Alternations } from "utils/transcribe"
import type { Alternations } from "~/utils/transcribe"
export interface Props {
value: Alternations
Expand Down
2 changes: 1 addition & 1 deletion site/components/visualized-result.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import type { VisualResultSegment } from "utils/transcribe"
import type { VisualResultSegment } from "~/utils/transcribe"
export interface Props {
value: VisualResultSegment[]
Expand Down
2 changes: 1 addition & 1 deletion site/components/visualized-segments.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import type { TranscribedSegment } from "utils/transcribe"
import type { TranscribedSegment } from "~/utils/transcribe"
export interface Props {
id?: string
Expand Down

0 comments on commit ff3840f

Please sign in to comment.