aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/stringLength.qml
blob: 354fed7b229791f07497e5354e9f32a29fff995e (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 2.15

TextInput {
    id: textInput

    Component.onCompleted: {
        console.log("text.length", textInput.text.length);
    }
}