-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
nuxt3中使用select多选框,点击选项有js报错 #7362
New issue
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
Labels
Comments
same here vueComponent/ant-design-vue-nuxt#41, this is a reproduction Kapture.2024-02-20.at.19.17.28.mp4 |
cascader 组件也出现了相似的问题 #7321 |
|
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Version
4.1.0
Environment
nuxt3.10.2, vue3.4.19,chrome119
Reproduction link
https://antdv.com/docs/vue/introduce-cn
Steps to reproduce
app.vue页面里面直接复制一份官网的demo例子,点击选项就报错了,弹窗也关闭不了,非nuxt项目虽然有报错,但是能正常选中
<script lang="ts" setup> import { ref } from 'vue'; const handleChange = (value: string[]) => { console.log(`selected ${value}`); }; const value = ref(['a1', 'b2']); </script>What is expected?
能正常选中和关闭弹窗
What is actually happening?
报错
The text was updated successfully, but these errors were encountered: