6f1db972创建于 2024年12月16日历史提交
<script>
import device from "@system.device";

export default {
  onCreate() {
    device.getInfo({
      success: (res) => {
        this.setScreenShape(res.screenShape);
      },
      fail: function () {},
    });
  },

  setScreenShape(shape) {
    this.screenShape = shape;
  },

  onDestroy() {
    console.info("Application onDestroy");
  }

};
</script>