Skip to content

Commit 26e4f7c

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

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

template/code/router/src/views/HomeView.vue

Lines changed: 1 addition & 1 deletion
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>

template/code/typescript-router/src/views/HomeView.vue

Lines changed: 1 addition & 1 deletion
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)