mirror of
https://github.com/enso-org/enso.git
synced 2024-11-27 06:32:30 +03:00
f2651d58e4
- Closes #7916 # Important Notes None
37 lines
1.1 KiB
Vue
37 lines
1.1 KiB
Vue
<script setup lang="ts">
|
|
import { logEvent } from 'histoire/client'
|
|
import { ref } from 'vue'
|
|
|
|
import TopBar from '@/components/TopBar.vue'
|
|
|
|
const title = ref('Mock Project')
|
|
const modes = ref(['design', 'live'])
|
|
const mode = ref('live')
|
|
const breadcrumbs = ref(['main', 'ad_analytics'])
|
|
</script>
|
|
|
|
<template>
|
|
<Story title="Top Bar" group="graph" :layout="{ type: 'grid', width: 500 }" autoPropsDisabled>
|
|
<div style="height: 48px">
|
|
<TopBar
|
|
:title="title"
|
|
:mode="mode"
|
|
:modes="modes"
|
|
:breadcrumbs="breadcrumbs"
|
|
@back="logEvent('back', [])"
|
|
@forward="logEvent('forward', [])"
|
|
@execute="logEvent('execute', [])"
|
|
@breadcrumbClick="logEvent('breadcrumbClick', [$event])"
|
|
@update:mode="logEvent('update:mode', [$event]), (mode = $event)"
|
|
/>
|
|
</div>
|
|
|
|
<template #controls>
|
|
<HstText v-model="title" title="title" />
|
|
<HstSelect v-model="mode" title="mode" :options="modes" />
|
|
<HstJson v-model="modes" title="modes" />
|
|
<HstJson v-model="breadcrumbs" title="breadcrumbs" />
|
|
</template>
|
|
</Story>
|
|
</template>
|