21 lines
674 B
Vue
21 lines
674 B
Vue
|
|
<script setup lang="ts">
|
||
|
|
import AppShell from './AppShell.vue';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Smoke-story для AppShell.vue — проверка что Vuetify + Forest-палитра
|
||
|
|
* рендерятся в Histoire.
|
||
|
|
*
|
||
|
|
* Дальнейшие компоненты (LoginView, DealCard, KanbanBoard и т.п.) получат
|
||
|
|
* собственные `*.story.vue` по мере реализации экранов из handoff Платона
|
||
|
|
* (`liderra_v8_handoff/concepts/`).
|
||
|
|
*/
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<Story title="Layout / AppShell" :layout="{ type: 'single', iframe: true }">
|
||
|
|
<Variant title="default">
|
||
|
|
<AppShell />
|
||
|
|
</Variant>
|
||
|
|
</Story>
|
||
|
|
</template>
|