overview
The imports method is a method that indicates the datasets that the comonent depend upon.
this.$imports = function () {
return ['data1','data2'];
}
The $imports method would return 'data1' if the component retrieved that named dataset somewhere else in its code.
let data = $val('data1');