mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +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>
|