mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
40 lines
800 B
Plaintext
40 lines
800 B
Plaintext
```html
|
|
<!-- YourPage.vue -->
|
|
|
|
<template>
|
|
<PageLayout :user="user">
|
|
<DocumentHeader :document="document" />
|
|
<DocumentList :documents="subdocuments" />
|
|
</PageLayout>
|
|
</template>
|
|
|
|
<script>
|
|
import PageLayout from './PageLayout';
|
|
import DocumentHeader from './DocumentHeader';
|
|
import DocumentList from './DocumentList';
|
|
|
|
export default {
|
|
name: 'DocumentScreen',
|
|
components: { PageLayout, DocumentHeader, DocumentList },
|
|
props: {
|
|
user: {
|
|
type: String,
|
|
default: 'N/A',
|
|
},
|
|
document: {
|
|
type: Object,
|
|
default: () => ({
|
|
id: 1,
|
|
title: 'A document',
|
|
content: 'Lorem Ipsum',
|
|
}),
|
|
},
|
|
subdocuments: {
|
|
type: Array,
|
|
default: () => [],
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
```
|