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
完整的bug触发和情况如下: <template #title>{{ t("2dmapv2.CommonUI.layerControls.block") }} <template #default>
我使用handleClick来给default插槽内的div的classList动态控制是否包含active类 但是在源码中, 在hover结束后直接将props.class写入到default插槽了
hover开始, hover结束的触发事件中, 应该也使用javascirpt的classList.add来, 而不要将类列表重新赋值
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What problem does this feature solve?
完整的bug触发和情况如下:
<template #title>{{ t("2dmapv2.CommonUI.layerControls.block") }}
<template #default>
我使用handleClick来给default插槽内的div的classList动态控制是否包含active类
但是在源码中, 在hover结束后直接将props.class写入到default插槽了
What does the proposed API look like?
hover开始, hover结束的触发事件中, 应该也使用javascirpt的classList.add来, 而不要将类列表重新赋值
The text was updated successfully, but these errors were encountered: