I recently installed Jasmine and Vue through npm, but I'm encountering an issue when trying to import the Vue component itself, which is a .vue file. It seems to be having trouble reading the template section enclosed within
<template></template>
tags. I'm also utilizing webpack, although I'm unsure if any additional configurations are needed in that regard.
Here's a glimpse of what a Vue component file typically looks like:
<template>
...
</template>
<script>
export default {
name: 'test',
data: {},
computed: {}
}
</script>