/*! For license information please see 9728.21a47b95.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["9728"],{39297:function(s,n,a){"use strict";a.r(n);var t=a("80681");let l=["innerHTML"];n.default={setup:()=>({html:""}),render:()=>((0,t.wg)(),(0,t.iD)("div",{class:"van-doc-markdown-body",innerHTML:'
A button to back to top.
\nRegister component globally via app.use
, refer to Component Registration for more registration ways.
import { createApp } from 'vue';\nimport { BackTop } from 'vant';\n\nconst app = createApp();\napp.use(BackTop);\n
\nPlease scroll the demo page to display the back top button.
\n<van-cell v-for="item in list" :key="item" :title="item" />\n\n<van-back-top />\n
\nexport default {\n setup() {\n const list = [...Array(50).keys()];\n return { list };\n },\n};\n
\nUsing right
and bottom
props to set the position of BackTop component.
<van-cell v-for="item in list" :key="item" :title="item" />\n<van-back-top right="15vw" bottom="10vh" />\n
\nexport default {\n setup() {\n const list = [...Array(50).keys()];\n return { list };\n },\n};\n
\nUsing the default slot to custom content.
\n<van-cell v-for="item in list" :key="item" :title="item" />\n<van-back-top class="custom">Back Top</van-back-top>\n\n<style>\n .custom {\n width: 80px;\n font-size: 14px;\n text-align: center;\n }\n</style>\n
\nexport default {\n setup() {\n const list = [...Array(50).keys()];\n return { list };\n },\n};\n
\n<div class="container">\n <van-cell v-for="item in list" :key="item" :title="item" />\n <van-back-top target=".container" bottom="30vh" />\n</div>\n\n<style>\n .container {\n height: 60vh;\n overflow: auto;\n }\n</style>\n
\nexport default {\n setup() {\n const list = [...Array(50).keys()];\n return { list };\n },\n};\n
\nAdd immediate
prop to scroll to top immediately.
<van-back-top immediate />\n
\nAttribute | \nDescription | \nType | \nDefault | \n
---|---|---|---|
target | \nCan be a selector or a DOM ELement, default closest parent scrolling container | \nstring | HTMLElement | \n- | \n
right | \nRight distance of the page, the default unit is px | \nnumber | string | \n30 | \n
bottom | \nBottom distance of the page, the default unit is px | \nnumber | string | \n40 | \n
offset | \nThe component will not display until the scroll offset reaches this value | \nnumber | \n200 | \n
teleport | \nSpecifies a target element where BackTop will be mounted | \nstring | Element | \nbody | \n
immediate v4.0.9 | \nWhether to scroll to top immediately | \nboolean | \nfalse | \n
z-index | \nSet the z-index to a fixed value | \nnumber | string | \n100 | \n
Event | \nDescription | \nArguments | \n
---|---|---|
click | \nEmitted when Component is clicked | \nevent: MouseEvent | \n
Name | \nDescription | \n
---|---|
default | \ncustomize default content | \n
The component exports the following type definitions:
\nimport type { BackTopProps, BackTopThemeVars } from 'vant';\n
\nThe component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.
\nName | \nDefault Value | \nDescription | \n
---|---|---|
--van-back-top-size | \n40px | \n- | \n
--van-back-top-icon-size | \n20px | \n- | \n
--van-back-top-right | \n30px | \n- | \n
--van-back-top-bottom | \n40px | \n- | \n
--van-back-top-z-index | \n100 | \n- | \n
--van-back-top-text-color | \n#fff | \n- | \n
--van-back-top-background | \nvar(--van-blue) | \n- | \n