mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-21 04:50:14 +08:00
487001d697
.demo.md for component demo .demo-entry.md for demo entry .md for common docs
1.6 KiB
1.6 KiB
Trigger Button
A trigger button, for free.
<n-switch v-model="collapsed" />
<n-layout style="height: 240px;">
<n-layout-header style="height: 64px;">
Cool Header
</n-layout-header>
<n-layout>
<n-layout-sider
collapse-mode="width"
show-trigger
:collapsed-width="120"
:width="240"
:collapsed="collapsed"
@collapse="collapsed = true"
@expand="collapsed = false"
>
<n-h1>Sider</n-h1>
</n-layout-sider>
<n-layout style="padding: 24px;">
<n-layout-content>
<span>Content</span>
</n-layout-content>
<n-layout-footer>
<n-h1>Footer</n-h1>
</n-layout-footer>
</n-layout>
</n-layout>
</n-layout>
<n-layout style="height: 240px; overflow: hidden;">
<n-layout-header position="absolute" style="height: 64px;">
Cool Header
</n-layout-header>
<n-layout position="absolute" style="top: 64px;">
<n-layout-sider
position="absolute"
show-trigger="arrow-circle"
collapse-mode="transform"
:collapsed-width="120"
:width="240"
:collapsed="collapsed"
@collapse="collapsed = true"
@expand="collapsed = false"
>
<n-h1>Sider</n-h1>
</n-layout-sider>
<n-layout
position="absolute"
style="padding: 24px;"
>
<n-layout-content>
<span>Content</span>
</n-layout-content>
<n-layout-footer>
<n-h1>Footer</n-h1>
</n-layout-footer>
</n-layout>
</n-layout>
</n-layout>
export default {
data () {
return {
collapsed: false
}
}
}