index.js 501 B

123456789101112131415161718192021222324252627
  1. Component({
  2. options: {
  3. addGlobalClass: true
  4. },
  5. properties: {
  6. iconName: {
  7. type: String,
  8. value: "icon-feiyongleixing"
  9. },
  10. title: {
  11. type: String,
  12. },
  13. showText: {
  14. type: String,
  15. },
  16. isEmpty: {
  17. type: Boolean,
  18. value: false
  19. },
  20. placeholder: {
  21. type: String,
  22. value: "请选择"
  23. }
  24. },
  25. data: {},
  26. methods: {}
  27. })