calendar/app.ux
2025-04-22 20:58:44 +08:00

27 lines
447 B
XML

<script>
/**
* 应用级别的配置,供所有页面公用
*/
import device from '@blueos.hardware.deviceInfo'
export default {
onCreate() {
device.getInfo({
success: (res) => {
this.setScreenShape(res.model);
},
fail: function () {},
});
},
setScreenShape(shape) {
this.screenShape = shape;
console.log(shape)
},
onDestroy() {
console.info("Application onDestroy");
}
};
</script>