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
<template> <view> <button hover-class="button-hover" @click="show = true">点我弹框</button> <view v-show="temp">11111</view> <uni-transition :mode-class="['slide-bottom']" :show="show"> <view>我是弹框内容</view> <button @click="temp = !temp">操作dom</button> <button @click="show = false">点我关闭</button></uni-transition > </view> </template> <script setup lang="ts"> import { ref } from "vue"; const show = ref(false); const temp = ref(false); </script> <style scoped lang="scss"></style>
在弹出状态下操作 dom 时,translateY 会从 0 变为 100%
步骤:点我弹框 -> 操作dom 会出现弹框内容回到底部
点我弹框 -> 操作dom
uni-ui: 1.4.22 vue: 3.2.33 vite: 2.9.5
The text was updated successfully, but these errors were encountered:
已复现该问题,确认bug,感谢反馈
Sorry, something went wrong.
No branches or pull requests
最小复现代码片段
步骤:
点我弹框 -> 操作dom
会出现弹框内容回到底部uni-ui: 1.4.22
vue: 3.2.33
vite: 2.9.5
The text was updated successfully, but these errors were encountered: