i have subfolder "subqmls", qml files in it

Qt Code:
  1. // a.qml -- subqmls/a.qml
  2. import QtQuick 2.0
  3.  
  4. Text {
  5. id: text1
  6. text: qsTr("Text")
  7. }
To copy to clipboard, switch view to plain text mode 

Qt Code:
  1. //main.qml
  2. import QtQuick 2.3
  3. import QtQuick.Window 2.2
  4. import "subqmls"
  5. Window {
  6. visible: true
  7.  
  8.  
  9. Text {
  10. id: text1
  11. }
  12. }
To copy to clipboard, switch view to plain text mode 
not working