mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 07:11:36 +08:00
Merge branch 'add-app-vue' of github.com:storybooks/storybook into add-app-vue
This commit is contained in:
commit
8178ec1253
@ -20,9 +20,10 @@ function renderErrorDisplay(error) {
|
||||
err = new Vue({
|
||||
el: '#error-display',
|
||||
render(h) {
|
||||
return h('div', { attrs: { id: 'error-display' } }, [
|
||||
h(ErrorDisplay, { props: { message: error.message, stack: error.stack } })
|
||||
]);
|
||||
return h('div', { attrs: { id: 'error-display' } }, error
|
||||
? [h(ErrorDisplay, { props: { message: error.message, stack: error.stack } }) ]
|
||||
: []
|
||||
);
|
||||
},
|
||||
});
|
||||
}
|
||||
@ -98,6 +99,11 @@ export function renderMain(data, storyStore) {
|
||||
// return renderError(error);
|
||||
// }
|
||||
|
||||
if (err) {
|
||||
renderErrorDisplay(null); // clear
|
||||
err = null;
|
||||
}
|
||||
|
||||
if (app) app.$destroy();
|
||||
|
||||
app = new Vue({
|
||||
|
Loading…
x
Reference in New Issue
Block a user