From e4279c3694a6918e6535e9b200e3326becb1882c Mon Sep 17 00:00:00 2001 From: Grzegorz Leoniec Date: Wed, 26 Jun 2019 00:41:29 +0200 Subject: [PATCH] Fixed no-ssr in storybook --- webapp/.storybook/config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/webapp/.storybook/config.js b/webapp/.storybook/config.js index 57f6e3bdf..064f314c9 100644 --- a/webapp/.storybook/config.js +++ b/webapp/.storybook/config.js @@ -14,7 +14,9 @@ Vue.component('nuxt-link', { template: 'NuxtLink', }) Vue.component('no-ssr', { - template: '
No SSR
', + render() { + return this.$slots.default + }, }) Vue.component('v-popover', { template: '
Popover Content
',