index.js 519 B

12345678910111213141516171819202122232425
  1. import { ContainerDefaultProps } from './props';
  2. import '../_util/assert-component2';
  3. Component({
  4. properties: {
  5. title: {
  6. type: String,
  7. },
  8. className: {
  9. type: String,
  10. },
  11. style: {
  12. type: String,
  13. },
  14. headerInBox: {
  15. value: true,
  16. type: Boolean,
  17. },
  18. },
  19. options: {
  20. //@ts-ignore
  21. multipleSlots: true,
  22. styleIsolation: 'shared',
  23. },
  24. props: ContainerDefaultProps,
  25. });