QML报错:qml connections:implicitly defined onfoo properties in connections

问题:在5.15版本会提示此问题

老版本:

Connections {
    target: button
    onClick: {

    }
}

新版本:

Connections {
    target: button
    function onClicked() {
        
    }
}

 

posted @ 2024-01-31 17:19  朱小勇  阅读(67)  评论(0编辑  收藏  举报