Skip to content

Commit

Permalink
refactor: shouldn't use @ without absolute necessity
Browse files Browse the repository at this point in the history
Reasoning: #45 (comment)
  • Loading branch information
haoqunjiang committed Aug 23, 2022
1 parent 8f144f0 commit 2f2b040
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion template/code/router/src/views/HomeView.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup>
import TheWelcome from '@/components/TheWelcome.vue'
import TheWelcome from '../components/TheWelcome.vue'
</script>

<template>
Expand Down
2 changes: 1 addition & 1 deletion template/code/typescript-router/src/views/HomeView.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import TheWelcome from '@/components/TheWelcome.vue'
import TheWelcome from '../components/TheWelcome.vue'
</script>

<template>
Expand Down

0 comments on commit 2f2b040

Please sign in to comment.