Fixed no-ssr in storybook

This commit is contained in:
Grzegorz Leoniec 2019-06-26 00:41:29 +02:00
parent e8f1c04ffe
commit e4279c3694

View File

@ -14,7 +14,9 @@ Vue.component('nuxt-link', {
template: '<a href="#" @click.prevent="log()"><slot>NuxtLink</slot></a>',
})
Vue.component('no-ssr', {
template: '<div><slot>No SSR</slot></div>',
render() {
return this.$slots.default
},
})
Vue.component('v-popover', {
template: '<div><slot>Popover Content</slot></div>',