使用Cocos cretor 2.0.9版本打开1.9.3项目label报错

Uncaught TypeError: Cannot read property ‘toString’ of undefined
at cc_Label.set [as string]

贴下代码,看看你具体的情况,或者参考下API文档。
https://docs.cocos.com/creator/api/zh/classes/Label.html#string

set (value) {
let oldValue = this._string;
this._string = value.toString();

            if (this.string !== oldValue) {
                this._updateRenderData();
            }

            this._checkStringEmpty();
        },

大致就是在定位在toString的时候
创建时
let lbl =node.getComponent(cc.Label).string

或者.getComponent(cc.Label).string = “str”

你的节点应该没有cc.Label组件,请确认下!