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
VUE.js下使用mui.js的侧滑菜单无效,在mounted里面加载的 mounted: function () { var vm=this; vm.$nextTick(()=>{ mui.init(); mui('.mui-input-row input').input(); //主界面和侧滑菜单界面均支持区域滚动; mui('#offCanvasSideScroll').scroll(); mui('#offCanvasContentScroll').scroll(); //实现ios平台原生侧滑关闭页面; if (mui.os.plus && mui.os.ios) { mui.plusReady(function () { //5+ iOS暂时无法屏蔽popGesture时传递touch事件,故该demo直接屏蔽popGesture功能 plus.webview.currentWebview().setStyle({ 'popGesture': 'none' }); }); } }); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
VUE.js下使用mui.js的侧滑菜单无效,在mounted里面加载的
mounted: function () {
var vm=this;
vm.$nextTick(()=>{
mui.init();
mui('.mui-input-row input').input();
//主界面和侧滑菜单界面均支持区域滚动;
mui('#offCanvasSideScroll').scroll();
mui('#offCanvasContentScroll').scroll();
//实现ios平台原生侧滑关闭页面;
if (mui.os.plus && mui.os.ios) {
mui.plusReady(function () { //5+ iOS暂时无法屏蔽popGesture时传递touch事件,故该demo直接屏蔽popGesture功能
plus.webview.currentWebview().setStyle({
'popGesture': 'none'
});
});
}
});
}
The text was updated successfully, but these errors were encountered: