Component自定义组件里能调用其他Component组件吗
Component({
properties: {
bg: {
type: String,
value: “”
},
draw: {
type: String,
value: “”
}
},
data: {
time : 0,
},
methods: {
init : function(){
var _this = this
//这里需要调用其他Component
},