index.js 260 B

123456789101112131415
  1. Component({
  2. properties: {
  3. list: {
  4. type: Array
  5. }
  6. },
  7. options: {
  8. multipleSlots: true
  9. },
  10. lifetimes: {
  11. attached() {
  12. getApp().globalData.Language.getLanguagePackage(this)
  13. }
  14. },
  15. })