-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
请问下多久支持page-container这个标签呢 #9580
Labels
enhancement
New feature or request
Comments
@abner-jlm 可以用吧:#9182 |
3.2.13版本没有这个组件呢 |
这是不维护了吗,半年了都没动静。。。 |
PageContainer 可以正常使用(3.3.19): import { Component } from "react";
import { View, Button, PageContainer } from "@tarojs/components";
export default class Index extends Component {
state = {
isShow: false
}
handleClick = () => {
this.setState({
isShow: !this.state.isShow
})
}
render() {
return (
<View>
<PageContainer show={this.state.isShow} onClickOverlay={this.handleClick}>
<View style='height: 200px'>
page-container
</View>
</PageContainer>
<Button onClick={this.handleClick}>toggle</Button>
</View>
)
}
} |
onAfterLeave , onBeforeLeave 这些事件都无法触发,这个有解决文案吗 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
这个特性解决了什么问题?
支持原生微信小程序page-container的功能
这个 API 长什么样?
支持原生微信小程序page-container的功能
The text was updated successfully, but these errors were encountered: