app如何控制手机横屏

手机进入时直接是横屏,可以这样设置:

onShow() {
     
	//#ifdef APP-PLUS
		plus.screen.lockOrientation('landscape-primary');
	//#endif
},
onUnload() {
     
	//#ifdef APP-PLUS
		plus.screen.lockOrientation('portrait-primary');		
	//#endif
	
},

你可能感兴趣的:(vue.js,css,html5)