There is an issue where it will not import the components for my vue 3 setup using Vite with a standard config file:
> node_modules/vue3-tabs-component/src/index.js:1:16: error: Could not resolve "./components/Tab"
1 │ import Tab from './components/Tab';
╵ ~~~~~~~~~~~~~~~~~~
> node_modules/vue3-tabs-component/src/index.js:2:17: error: Could not resolve "./components/Tabs"
2 │ import Tabs from './components/Tabs';
I had to add .vue extensions to the components in the index.js file in order to fix it:
src/index.js:
import Tab from './components/Tab.vue';
import Tabs from './components/Tabs.vue';
There is an issue where it will not import the components for my vue 3 setup using Vite with a standard config file:
I had to add
.vue
extensions to the components in theindex.js
file in order to fix it:src/index.js
: