mirror of
https://github.com/IT4Change/boilerplate-frontend.git
synced 2025-12-13 07:35:53 +00:00
27 lines
405 B
Vue
27 lines
405 B
Vue
<!-- .storybook/StoryWrapper.vue -->
|
|
<template>
|
|
<v-app :theme="themeName">
|
|
<v-main>
|
|
<slot name="story"></slot>
|
|
</v-main>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script>
|
|
export const DEFAULT_THEME = 'light'
|
|
export default {
|
|
props: {
|
|
themeName: {
|
|
default: DEFAULT_THEME,
|
|
type: String,
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.v-application .v-application__wrap {
|
|
min-height: unset;
|
|
}
|
|
</style>
|