2019-11-19 17:27:53 +08:00
|
|
|
# Use Built-in Scrollbar
|
2020-01-02 23:21:10 +08:00
|
|
|
Sometimes you will find native scrollbar doesn't meet the style of naive-ui. You can use built-in scrollbar of naive-ui (on sider, layout or content).
|
2019-11-19 17:27:53 +08:00
|
|
|
```html
|
|
|
|
<n-layout style="height: 480px;">
|
|
|
|
<n-layout-header style="height: 64px;">
|
|
|
|
Cool Header
|
|
|
|
</n-layout-header>
|
|
|
|
<n-layout mode="absolute" style="top: 64px; bottom: 64px;">
|
|
|
|
<n-layout-sider mode="absolute" :use-native-scrollbar="false">
|
|
|
|
Cool Sider
|
|
|
|
</n-layout-sider>
|
|
|
|
<n-layout mode="absolute" :use-native-scrollbar="false">
|
2019-12-28 13:46:37 +08:00
|
|
|
<n-h1>Long</n-h1><n-h1>Long</n-h1><n-h1>Long</n-h1>
|
|
|
|
<n-h1>Long</n-h1><n-h1>Long</n-h1><n-h1>Long</n-h1>
|
|
|
|
<n-h1>Long</n-h1><n-h1>Long</n-h1><n-h1>Long</n-h1>
|
|
|
|
<n-h1>Long</n-h1><n-h1>Long</n-h1><n-h1>Long</n-h1>
|
2019-11-19 17:27:53 +08:00
|
|
|
</n-layout>
|
|
|
|
</n-layout>
|
|
|
|
<n-layout-footer mode="absolute" style="height: 64px">
|
|
|
|
Cool Footer
|
|
|
|
</n-layout-footer>
|
|
|
|
</n-layout>
|
2020-01-02 23:21:10 +08:00
|
|
|
```
|