mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
21 lines
327 B
JavaScript
21 lines
327 B
JavaScript
import styles from './styles';
|
|
|
|
export default function() {
|
|
return {
|
|
template: `
|
|
<div :style="style">
|
|
<div :style="innerStyle">
|
|
<story/>
|
|
</div>
|
|
</div>
|
|
`,
|
|
data() {
|
|
return styles;
|
|
},
|
|
};
|
|
}
|
|
|
|
if (module && module.hot && module.hot.decline) {
|
|
module.hot.decline();
|
|
}
|