Merge branch 'add-app-vue' of github.com:storybooks/storybook into add-app-vue

This commit is contained in:
Alexandre BODIN 2017-06-18 18:38:39 +02:00
commit 8178ec1253

View File

@ -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({