Skip to content

Commit 103c0f9

Browse files
committed
refactor: shouldn't use @ without absolute necessity
Reasoning: vuejs/create-vue#45 (comment)
1 parent c24a62b commit 103c0f9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: template/code/router/src/views/HomeView.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup>
2-
import TheWelcome from '@/components/TheWelcome.vue'
2+
import TheWelcome from '../components/TheWelcome.vue'
33
</script>
44

55
<template>

Diff for: template/code/typescript-router/src/views/HomeView.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup lang="ts">
2-
import TheWelcome from '@/components/TheWelcome.vue'
2+
import TheWelcome from '../components/TheWelcome.vue'
33
</script>
44

55
<template>

0 commit comments

Comments
 (0)