index.js 430 B

12345678910111213141516171819202122
  1. // components/My_card/index.js
  2. Component({
  3. //暴露外部样式表 [根节点,]
  4. externalClasses: ["custom-class"],
  5. options: {
  6. addGlobalClass: true,
  7. multipleSlots: true
  8. },
  9. /**
  10. * 组件的属性列表
  11. */
  12. properties: {
  13. title: {
  14. type: String,
  15. value: ""
  16. },
  17. hover: {
  18. type: Boolean,
  19. value: false
  20. }
  21. },
  22. })