GDScript3
9 行
    let detectZoom=this.detectZoom();
    if(100!=detectZoom){
        const h = this.$createElement;
        this.$notify({
          title: '警告',
          message: h('b', { style: 'color: red;font-size:14px;'}, '您的浏览器页面可能处于缩放 ('+detectZoom+'%)状态,这可能引起页面混乱,请尝试按 Ctrl+0 重置后刷新'),
          duration: 0
        });
    }