mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:51:17 +08:00
chore(notes): add angular documentation
This commit is contained in:
parent
fbee3cdd5f
commit
89d91a9a15
@ -58,6 +58,27 @@ storiesOf('MyButton', module).add(
|
||||
);
|
||||
```
|
||||
|
||||
### With Angular
|
||||
|
||||
```js
|
||||
import { storiesOf } from '@storybook/vue';
|
||||
|
||||
import { ButtonComponent } from './button.component';
|
||||
|
||||
storiesOf('Button', module).add(
|
||||
'with some emoji',
|
||||
() => ({
|
||||
component: ButtonComponent,
|
||||
props: {
|
||||
text: '😀 😎 👍 💯'
|
||||
}
|
||||
}),
|
||||
{
|
||||
notes: 'A very simple example of addon notes',
|
||||
}
|
||||
);
|
||||
```
|
||||
|
||||
## Using Markdown
|
||||
|
||||
Using Markdown in your notes is supported, Storybook will load Markdown as raw by default.
|
||||
|
Loading…
x
Reference in New Issue
Block a user