feat(demo): add story 1 — Sorano: Rock and Time

This commit is contained in:
2026-06-20 21:19:57 +02:00
parent 42ed59a6b3
commit 8f87155c1d
5508 changed files with 1595740 additions and 124 deletions
+27
View File
@@ -0,0 +1,27 @@
<template>
<div>
<flex-filter-bar :store="store" />
<flex-content-loader :store="store" v-show="loading" />
<flex-table :store="store" v-model="loading" v-show="!loading" />
</div>
</template>
<script>
import FlexTable from './components/Table.vue';
import FlexFilterBar from './components/FilterBar.vue';
import FlexContentLoader from './components/ContentLoader.vue';
export default {
props: ['initialStore'],
components: {FlexTable, FlexFilterBar, FlexContentLoader},
data: () => ({
perPage: 10,
loading: true
}),
computed: {
store() {
return JSON.parse(this.initialStore || '{}');
}
}
}
</script>