We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please respect maintainers time by filling in these sections. Your issue will likely be closed without this information.
Describe the bug I am getting the follwing error message ambiguous indirect export: VueSelect
This is happening after I have include import { VueSelect } from "vue-select"; in my component file and run the app again
Reproduction Link A link to a reproduction of the bug. This is a huge help.
Steps To Reproduce
<script setup> import { VueSelect } from "vue-select"; // include this import defineProps({ msg: { type: String, required: true } }) </script>
Expected behavior A clear and concise description of what you expected to happen.
Screenshots
The text was updated successfully, but these errors were encountered:
@mroustchev had the same Problem with Vue 3.4. You can can solve this importing the component that way
const App = createApp(MainVueComponent); App.component('VueSelect', VueSelect);
or locally inside component
import VueSelect from 'vue-select';
than you need to have to define "watch()" to listen for changed options
Sorry, something went wrong.
No branches or pull requests
Describe the bug
I am getting the follwing error message
ambiguous indirect export: VueSelect
This is happening after I have include
import { VueSelect } from "vue-select";
in my component file and run the app again
Reproduction Link
A link to a reproduction of the bug. This is a huge help.
Steps To Reproduce
npm install vue-select@beta
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots
The text was updated successfully, but these errors were encountered: