Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Ajvanho's avatar
Level 14

vue 3 import component

Can't resolve './components/FixtureFetch.vue', path js/components... in js/views...

<template>
	<FixtureFetch />
</template>

<script setup>
import FixtureFetch from './components/FixtureFetch.vue'
</script>
0 likes
2 replies
Sergiu17's avatar
Sergiu17
Best Answer
Level 60

where the current file is located? show your folder structure and files. But I'm guessing it should be

import FixtureFetch from '../components/FixtureFetch.vue'

Please or to participate in this conversation.