mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Add inheritance example
This commit is contained in:
parent
2da1faf419
commit
a9c93105e3
@ -0,0 +1 @@
|
||||
this is label
|
@ -0,0 +1,11 @@
|
||||
import { Component, Input } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: `storybook-base-button`,
|
||||
template: `
|
||||
<button>{{label}}</button>
|
||||
`,
|
||||
})
|
||||
export class BaseButtonComponent {
|
||||
@Input() label: string;
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
import { Component, Input } from '@angular/core';
|
||||
import { BaseButtonComponent } from './base-button.component';
|
||||
|
||||
@Component({
|
||||
selector: `storybook-icon-button`,
|
||||
template: `
|
||||
<button>{{label}} - {{icon}}</button>
|
||||
`,
|
||||
})
|
||||
export class IconButtonComponent extends BaseButtonComponent {
|
||||
@Input() icon: string;
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
import { storiesOf } from '@storybook/angular';
|
||||
import { IconButtonComponent } from './icon-button.component';
|
||||
import { BaseButtonComponent } from './base-button.component';
|
||||
|
||||
storiesOf('Inheritance', module)
|
||||
.add('icon button', () => ({
|
||||
component: IconButtonComponent,
|
||||
props: {
|
||||
icon: 'this is icon',
|
||||
label: 'this is label',
|
||||
},
|
||||
}))
|
||||
.add('base button', () => ({
|
||||
component: BaseButtonComponent,
|
||||
props: {
|
||||
label: 'this is label',
|
||||
},
|
||||
}));
|
Loading…
x
Reference in New Issue
Block a user