ng-ytl-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
52 lines (50 loc) • 1.26 kB
text/typescript
import {Component, OnInit} from '@angular/core';
export class NzDemoCollapseCustomComponent {
panels = [
{
active: true,
disabled: false,
name: 'This is panel header 1',
customStyle: {
'background': '#f7f7f7',
'border-radius': '4px',
'margin-bottom': '24px',
'border': '0px'
}
},
{
active: false,
disabled: true,
name: 'This is panel header 2',
customStyle: {
'background': '#f7f7f7',
'border-radius': '4px',
'margin-bottom': '24px',
'border': '0px'
}
},
{
active: false,
disabled: false,
name: 'This is panel header 3',
customStyle: {
'background': '#f7f7f7',
'border-radius': '4px',
'margin-bottom': '24px',
'border': '0px'
}
}
];
}