/*! For license information please see 9018.adfdaa96.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["9018"],{3214:function(s,n,a){"use strict";a.r(n);var t=a("80681");let e=["innerHTML"];n.default={setup:()=>({html:""}),render:()=>((0,t.wg)(),(0,t.iD)("div",{class:"van-doc-markdown-body",innerHTML:'

List

\n

Intro

\n

A list component to show items and control loading status.

\n

Install

\n

Register component globally via app.use, refer to Component Registration for more registration ways.

\n
import { createApp } from 'vue';\nimport { List } from 'vant';\n\nconst app = createApp();\napp.use(List);\n
\n

Usage

\n

Basic Usage

\n
<van-list\n  v-model:loading="loading"\n  :finished="finished"\n  finished-text="Finished"\n  @load="onLoad"\n>\n  <van-cell v-for="item in list" :key="item" :title="item" />\n</van-list>\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const list = ref([]);\n    const loading = ref(false);\n    const finished = ref(false);\n\n    const onLoad = () => {\n      setTimeout(() => {\n        for (let i = 0; i < 10; i++) {\n          list.value.push(list.value.length + 1);\n        }\n        loading.value = false;\n\n        if (list.value.length >= 40) {\n          finished.value = true;\n        }\n      }, 1000);\n    };\n\n    return {\n      list,\n      onLoad,\n      loading,\n      finished,\n    };\n  },\n};\n
\n

Error Info

\n
<van-list\n  v-model:loading="loading"\n  v-model:error="error"\n  error-text="Request failed. Click to reload"\n  @load="onLoad"\n>\n  <van-cell v-for="item in list" :key="item" :title="item" />\n</van-list>\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const list = ref([]);\n    const error = ref(false);\n    const loading = ref(false);\n    const onLoad = () => {\n      fetchSomeThing().catch(() => {\n        loading.value = false;\n        error.value = true;\n      });\n    };\n\n    return {\n      list,\n      error,\n      onLoad,\n      loading,\n    };\n  },\n};\n
\n

PullRefresh

\n
<van-pull-refresh v-model="refreshing" @refresh="onRefresh">\n  <van-list\n    v-model:loading="loading"\n    :finished="finished"\n    finished-text="Finished"\n    @load="onLoad"\n  >\n    <van-cell v-for="item in list" :key="item" :title="item" />\n  </van-list>\n</van-pull-refresh>\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const list = ref([]);\n    const loading = ref(false);\n    const finished = ref(false);\n    const refreshing = ref(false);\n\n    const onLoad = () => {\n      setTimeout(() => {\n        if (refreshing.value) {\n          list.value = [];\n          refreshing.value = false;\n        }\n\n        for (let i = 0; i < 10; i++) {\n          list.value.push(list.value.length + 1);\n        }\n        loading.value = false;\n\n        if (list.value.length >= 40) {\n          finished.value = true;\n        }\n      }, 1000);\n    };\n\n    const onRefresh = () => {\n      finished.value = false;\n      loading.value = true;\n      onLoad();\n    };\n\n    return {\n      list,\n      onLoad,\n      loading,\n      finished,\n      onRefresh,\n      refreshing,\n    };\n  },\n};\n
\n

API

\n

Props

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AttributeDescriptionTypeDefault
v-model:loadingWhether to show loading info, the load event will not be Emitted when loadingbooleanfalse
v-model:errorWhether loading is error, the load event will be Emitted only when error text clickedbooleanfalse
finishedWhether loading is finished, the load event will not be Emitted when finishedbooleanfalse
offsetThe load event will be Emitted when the distance between the scrollbar and the bottom is less than offsetnumber | string300
loading-textLoading textstringLoading...
finished-textFinished textstring-
error-textError loaded textstring-
immediate-checkWhether to check loading position immediately after mountedbooleantrue
disabledWhether to disable the load eventbooleanfalse
directionScroll direction, can be set to upstringdown
scroller v4.6.4Specifies the node that needs to listen for scroll events, defaults to the nearest parent scroll nodeElement-
\n

Events

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
EventDescriptionArguments
loadEmitted when the distance between the scrollbar and the bottom is less than offset-
\n

Methods

\n

Use ref to get List instance and call instance methods.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescriptionAttributeReturn value
checkCheck scroll position--
\n

Types

\n

The component exports the following type definitions:

\n
import type { ListProps, ListInstance, ListDirection } from 'vant';\n
\n

ListInstance is the type of component instance:

\n
import { ref } from 'vue';\nimport type { ListInstance } from 'vant';\n\nconst listRef = ref<ListInstance>();\n\nlistRef.value?.check();\n
\n

Slots

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription
defaultList content
loadingCustom loading tips
finishedCustom finished tips
errorCustom error tips
\n

Theming

\n

CSS Variables

\n

The component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDefault ValueDescription
--van-list-text-colorvar(--van-text-color-2)-
--van-list-text-font-sizevar(--van-font-size-md)-
--van-list-text-line-height50px-
--van-list-loading-icon-size16px-
\n

FAQ

\n

How does List component work?

\n

List will listen to the scroll event of the browser and calculate the position. When the distance between the bottom of the list and the visible area is less than offset, the List component will trigger a load event.

\n

Why does the load event triggered immediately after mounted?

\n

A load event will be triggered immediately to load the first screen data. This feature can be disabled by the immediate-check prop.

\n

Why does the load event triggered continuously?

\n

If the amount of data loaded in one request is too small, the List will continue to trigger the load event until the content fills the screen or the data is fully loaded.

\n

Therefore, you need to adjust the amount of data per request. Ideally, the amount of data per request should be able to fill the height of one screen.

\n

What is the meaning of loading and finished?

\n

List has three states, understanding these states will help you use the component:

\n\n

After each request, you need to manually set loading to false, indicating the end of loading.

\n

Always trigger loading after using float layout?

\n

If you use the float layout on the content, you can add the van-clearfix class to the container to clear the float, so that the List can get the element position correctly.

\n
<van-list>\n  <div class="van-clearfix">\n    <div class="float-item" />\n    <div class="float-item" />\n    <div class="float-item" />\n  </div>\n</van-list>\n
\n

Always trigger loading after setting overflow on html and body?

\n

If the overflow-x: hidden style is set on the html and body tags, it will cause the List to always trigger loading.

\n
html,\nbody {\n  overflow-x: hidden;\n}\n
\n

The reason is that when an element is styled with overflow-x: hidden, the element\'s overflow-y will be set to auto by the browser, instead of the default value of visible, causing the List can not determine the scroll container correctly. The workaround is to remove this style, or add the height: 100% style to the html and body tags.

\n

Always trigger loading when the direction prop is set to up?

\n

Setting the direction prop to up will trigger the loading of the List component when the scrollbar is at the page top.

\n

When using this prop, it is recommended to scroll the scroll bar to the page bottom after each data request is completed.

\n
'},null,8,e))}}}]);