index.ts 319 B

123456789101112131415161718
  1. Component({
  2. externalClasses: ['custom-class'],
  3. options: {
  4. multipleSlots: true,
  5. },
  6. properties: {
  7. title: String,
  8. // 是否显示返回按钮
  9. showBackButton: {
  10. type: Boolean,
  11. value: true,
  12. },
  13. },
  14. data: {
  15. },
  16. methods: {
  17. },
  18. })