首先,确保你已经安装了Vant3组件库。你可以使用npm或者yarn进行安装:
npm install vant@next
# 或者
yarn add vant@next
然后,在你的Vue组件中引入并注册Loading组件:
<template>
<div>
<van-button @click="showLoading">显示加载状态</van-button>
</div>
</template>
<script>
import { ref } from 'vue';
import { Loading, Button } from 'vant';
export default {
components: {
[Button.name]: Button,
},
setup() {
const showLoading = () => {
const loadingInstance = Loading({
message: '加载中...',
duration: 2000, // 设置加载状态显示的时长,单位为毫秒,可选
});
// 模拟异步操作
setTimeout(() => {
loadingInstance.close(); // 关闭加载状态
}, 2000);
};
return {
showLoading,
};
},
};
</script>
在上述例子中,我们使用Vue 3的ref函数创建一个响应式的showLoading函数,用于显示加载状态。然后,在模板中使用<van-button>标签引入了Vant3的按钮组件,并通过@click监听按钮点击事件,触发showLoading方法。
在showLoading方法中,我们调用Loading函数创建加载状态实例。通过message设置加载状态的文本信息,通过duration设置加载状态的显示时长,单位为毫秒,可选。
在这个例子中,我们使用setTimeout模拟一个异步操作,2秒后关闭加载状态。实际项目中,你可以在异步操作完成后调用 loadingInstance.close() 关闭加载状态。
请确保你的项目已正确配置Vant3,并根据你的实际需求调整代码。
转载请注明出处:http://www.zyzy.cn/article/detail/5737/Vant