# Sticky ### Install ``` javascript import Vue from 'vue'; import { Sticky } from 'vant'; Vue.use(Sticky); ``` ## Usage ### Basic Usage ```html Basic Usage ``` ### Offset Top ```html Offset Top ``` ### Set Container ```html
Set Container
``` ```js export default { data() { return { container: null }; }, mounted() { this.container = this.$refs.container; } }; ``` ## API ### Props | Attribute | Description | Type | Default | |------|------|------|------| | offset-top | Offset top | *number* | `0` | | z-index | z-index when sticky | *number* | `99` | | container | Container DOM | *HTMLElement* | - | ### Events | Event | Description | Arguments | |------|------|------| | scroll | Triggered when scroll | object: { scrollTop, isFixed } |