index.js 217 B

12345678910111213141516
  1. Component({
  2. properties: {
  3. list: {
  4. type: Array
  5. },
  6. admin: {
  7. type: Boolean,
  8. value: false
  9. }
  10. },
  11. lifetimes: {
  12. attached: function () {
  13. getApp().globalData.Language.getLanguagePackage(this)
  14. }
  15. },
  16. })