dcloudio / mui

最接近原生APP体验的高性能框架

Home Page:https://dev.dcloud.net.cn/mui/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

VUE.js下使用mui.js的侧滑菜单无效

houdianjie opened this issue · comments

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'
});
});
}
});
}