2020-01-02 23:21:10 +08:00
|
|
|
# 使用内置滚动条
|
2020-03-08 00:06:05 +08:00
|
|
|
有时原生滚动条与 naive-ui 的样式不协调。可以(在 `n-layout-sider`、`n-layout` 或 `n-layout-content`)使用 naive-ui 内置的滚动条。
|
2020-01-02 23:21:10 +08:00
|
|
|
```html
|
|
|
|
<n-layout style="height: 480px;">
|
|
|
|
<n-layout-header style="height: 64px;">
|
2020-02-03 20:13:14 +08:00
|
|
|
酷的页头
|
2020-01-02 23:21:10 +08:00
|
|
|
</n-layout-header>
|
2020-03-08 00:06:05 +08:00
|
|
|
<n-layout position="absolute" style="top: 64px; bottom: 64px;">
|
|
|
|
<n-layout-sider position="absolute" :use-native-scrollbar="false">
|
|
|
|
<n-h1>长</n-h1><n-h1>长</n-h1><n-h1>长</n-h1>
|
|
|
|
<n-h1>长</n-h1><n-h1>长</n-h1><n-h1>长</n-h1>
|
|
|
|
<n-h1>长</n-h1><n-h1>长</n-h1><n-h1>长</n-h1>
|
|
|
|
<n-h1>长</n-h1><n-h1>长</n-h1><n-h1>长</n-h1>
|
2020-01-02 23:21:10 +08:00
|
|
|
</n-layout-sider>
|
2020-03-08 00:06:05 +08:00
|
|
|
<n-layout position="absolute" :use-native-scrollbar="false">
|
2020-02-03 20:13:14 +08:00
|
|
|
<n-h1>长</n-h1><n-h1>长</n-h1><n-h1>长</n-h1>
|
|
|
|
<n-h1>长</n-h1><n-h1>长</n-h1><n-h1>长</n-h1>
|
|
|
|
<n-h1>长</n-h1><n-h1>长</n-h1><n-h1>长</n-h1>
|
|
|
|
<n-h1>长</n-h1><n-h1>长</n-h1><n-h1>长</n-h1>
|
2020-01-02 23:21:10 +08:00
|
|
|
</n-layout>
|
|
|
|
</n-layout>
|
2020-03-08 00:06:05 +08:00
|
|
|
<n-layout-footer position="absolute" style="height: 64px">
|
2020-02-03 20:13:14 +08:00
|
|
|
酷的页脚
|
2020-01-02 23:21:10 +08:00
|
|
|
</n-layout-footer>
|
|
|
|
</n-layout>
|
|
|
|
```
|