Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b45eaed

Browse files
committedAug 23, 2022
refactor: shouldn't use @ without absolute necessity
Reasoning: vuejs/create-vue#45 (comment)
1 parent a3b1e60 commit b45eaed

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)
Please sign in to comment.