"use strict"; Component({ properties: { floatingList: { type: Array, value: [] } }, data: { singleComponent: '' }, lifetimes: { attached: function () { console.log('floatingList attached'); var componentFrontId = this.data.floatingList[0].componentFrontId; this.setData({ singleComponent: componentFrontId }); }, detached: function () { }, }, methods: {} });