index.js 272 B

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