vue vant ui 教程注意事项

2024-04-26 22:58

本文主要是介绍vue vant ui 教程注意事项,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Hi,很高兴认识你~

世界很大,巧妙的是我们在这里相遇。

欢迎关注天宇文创意乐派,一个职场人的聚集地。

官网:https://youzan.github.io/vant/#/zh-CN/

01

vant 插件PullRefresh下拉刷新 会出现滚动就刷新的情况

常见问题:

1.父级容器不存在overflow:hidden

2.当使用Refresh插件时,如果存在当van-refresh组件的父级overfow-y:scorll 的样式时,选中的滚动条为父级元素,此时当body内部容器撑开页面元素时(也就是body存在滚动条时)

解决方式:

1.给父级容器加上overflow:hidden

2.设置van-refresh组件的父级组件的正确高度,使body的高度不会出现滚动条。

.van-pull-refresh {height: 100vh;overflow: auto !important;
}

PullRefresh 的内容未填满屏幕时,只有一部分区域可以下拉?默认情况下,下拉区域的高度是和内容高度保持一致的,如果需要让下拉区域始终为全屏,可以给 PullRefresh 设置一个与屏幕大小相等的最小高度:

vant ui 官网

02

vant  van-icon使用自定义图标

iconfont图标库: https://www.iconfont.cn/

图片

搜索自己喜好的图标 添加入库

图片

点击我的图标库  选择对应的项目  点击确定

图片

点击更新代码

图片

复制css代码到 Vue项目中

图片

引入到项目中的位置 切记打包时 要配置http或https的形式

图片

可以在App.vue 或main.js  我这里是配置在main.js中

图片

vue文件中的使用

<template><div id="tabbar"><!-- 给tabbar route属性  然后给每一项to属性就可以路由跳转了 --><van-tabbar  route><van-tabbar-item icon="home-o" to="/">书架</van-tabbar-item><van-tabbar-item to="/bookShop" ><div class="customTabbarItem"><!--引入自定义图标--><van-icon class="iconfont iconicon_huabanfuben icon_margin"/><span>书城</span></div></van-tabbar-item><van-tabbar-item to="/bookClass" ><div class="customTabbarItem"><!--引入自定义图标--><van-icon class="iconfont iconleimupinleifenleileibie icon_margin"/><span>分类</span></div></van-tabbar-item><van-tabbar-item icon="user-o" to="/profile">我的</van-tabbar-item></van-tabbar></div>
</template>

03

vant swiper 轮播图圆角滑动变会变成直角然后再回到圆角(iOS)

#template部分
<van-pull-refresh v-model="isLoading" @refresh="init" :disabled="open" :style="{backgroundColor: bgColor}" class="pull-container"><!-- 轮播图 --><div class="cu-swipe" v-if="bannerList.length>0" ><van-swipe :autoplay="3000"><van-swipe-item v-for="(banner, index) in bannerList" :key="index" @click="toJump(banner)"><!-- 轮播图去掉 lazy-load 属性  --><van-image :src="STATIC_HOST + banner.imageLink"/></van-swipe-item></van-swipe></div><div class="book-list-container"><!-- 主编推荐 --><div class="book-recommend-wrapper"><div class="recommend-header"><div class="recommend-header-left"><h1>主编推荐</h1></div><div class="recommend-header-right"><div class="recommend-icon-item"><van-icon name="star" class="icon_margin" /><span>品质</span></div><div class="recommend-icon-item"><van-icon name="star" class="icon_margin"/><span>人气</span></div><div class="recommend-icon-item last"><van-icon name="star" class="icon_margin"/><span>兴趣</span></div></div></div><van-row type="flex" justify="space-between" v-if="recommendList.length>0"><van-col span="7" v-for="(recommend, index) in recommendList"><router-link :key="recommend.id" :to="{path: '/bookDetail', query:{bookId: recommend.id}}"><van-image class="recommend-cover" lazy-load :src="STATIC_HOST + recommend.coverImg" /><span class="recommend-title">{{recommend.title}}</span></router-link></van-col></van-row></div><!-- 高分神作  --><div class="book-eight-wrapper"><van-row class="book-eight-wrapper-header"><van-col span="24" class="header-left"><h1>高分神作</h1></van-col></van-row><van-row type="flex" justify="space-between" v-for="(i) in 2"><van-col span="5" v-for="(highScore, index) in highScoreList" v-if=" i===1 && index < 4 "><router-link :key="highScore.id" :to="{path: '/bookDetail', query:{bookId: highScore.id}}"><van-image class="book-eight-wrapper-cover" lazy-load :src="STATIC_HOST + highScore.coverImg" /><span class="book-eight-wrapper-title">{{highScore.title}}</span><span class="book-eight-wrapper-score">9.7<span class="unit">分</span></span></router-link></van-col><van-col span="5" v-for="(highScore, index) in highScoreList" v-if=" i===2 && index >= 4"><router-link :key="highScore.id" :to="{path: '/bookDetail', query:{bookId: highScore.id}}"><van-image class="book-eight-wrapper-cover" lazy-load :src="STATIC_HOST + highScore.coverImg" /><span class="book-eight-wrapper-title">{{highScore.title}}</span><span class="book-eight-wrapper-score">9.7<span class="unit">分</span></span></router-link></van-col></van-row></div><!--潜力新书--><div class="book-eight-wrapper"><div class="book-eight-wrapper-header"><div class="header-left"><h1>潜力新书</h1></div><div class="header-right"><a @click="handleMore('潜力新书','SERIAL')"><span>更多</span><span><van-icon class="iconfont icongengduo"/></span></a></div></div><van-row type="flex" justify="space-between" v-for="(i) in 2"><van-col span="5" v-for="(item, index) in newVos" v-if=" i===1 && index < 4 "><router-link :key="item.id" :to="{path: '/bookDetail', query:{bookId: item.id}}"><van-image class="book-eight-wrapper-cover" lazy-load :src="STATIC_HOST + item.coverImg" /><span class="book-eight-wrapper-title">{{item.title}}</span><span class="book-eight-wrapper-label">{{processLabelInfo(item.labelInfo)}}</span></router-link></van-col><van-col span="5" v-for="(item, index) in newVos" v-if=" i===2 && index >= 4"><router-link :key="item.id" :to="{path: '/bookDetail', query:{bookId: item.id}}"><van-image class="book-eight-wrapper-cover" lazy-load :src="STATIC_HOST + item.coverImg" /><span class="book-eight-wrapper-title">{{item.title}}</span><span class="book-eight-wrapper-label">{{processLabelInfo(item.labelInfo)}}</span></router-link></van-col></van-row></div><!--完结优选--><div class="book-eight-wrapper"><div class="book-eight-wrapper-header"><div class="header-left"><h1>完结优选</h1></div><div class="header-right"><a @click="handleMore('爆款完本','FINISH')"><span>更多</span><span><van-icon class="iconfont icongengduo"/></span></a></div></div><van-row type="flex" justify="space-between" v-for="(i) in 2"><van-col span="5" v-for="(item, index) in finishVos" v-if=" i===1 && index < 4 "><router-link :key="item.id" :to="{path: '/bookDetail', query:{bookId: item.id}}"><van-image class="book-eight-wrapper-cover" lazy-load :src="STATIC_HOST + item.coverImg" /><span class="book-eight-wrapper-title">{{item.title}}</span><span class="book-eight-wrapper-label">{{processLabelInfo(item.labelInfo)}}</span></router-link></van-col><van-col span="5" v-for="(item, index) in finishVos" v-if=" i===2 && index >= 4"><router-link :key="item.id" :to="{path: '/bookDetail', query:{bookId: item.id}}"><van-image class="book-eight-wrapper-cover" lazy-load :src="STATIC_HOST + item.coverImg" /><span class="book-eight-wrapper-title">{{item.title}}</span><span class="book-eight-wrapper-label">{{processLabelInfo(item.labelInfo)}}</span></router-link></van-col></van-row></div></div></van-pull-refresh>
#css部分
.pull-container {position: relative;min-height: 100vh;width: 100%;overflow-y: auto; //解决IOS 动态变化时 先变直角在变圆角的处理方案border: none;.van-hairline--bottom:after {border-bottom-width: 0;}.cu-swipe{margin: 0.533rem 0.533rem 0 0.533rem; //可以单独改变元素的上,右,下,左边距,也可以一次改变所有的属性。-webkit-border-radius: 0.267rem 0.267rem 0 0;-moz-border-radius: 0.267rem 0.267rem 0 0;overflow-y: auto; //解决IOS 动态变化时 先变直角在变圆角的处理方案.van-swipe-item {width: 100%;height: 4rem;font-size: 0.533rem;text-align: center;transform: translateY(0); //解决IOS 动态变化时 先变直角在变圆角的处理方案img{display:block;vertical-align:top;width: 100%;height: 4rem;}}}}

由于页面内容太多 我只粘贴主要部分不用直接上来就复制粘贴

04

vue  vant ui  vant-tab 标签页组件样式调整

<van-tabs
v-model="active"
sticky
title-active-color="#144a9e" // 选中的标签文字颜色
color="#144a9e" // 下面那个下划线颜色
@click="tabClick">

改变van-tab边框颜色 在类名前加上深度操作符: /deep/

/deep/.channel-tabs {.van-tab {border-right: 1px solid #edeff3;}}

改变van-tab 标签:宽高 文字颜色大小, 底部条:宽高 颜色 位置

.van-tabs__nav {  //父元素默认底边15px 可以去掉padding-bottom: 0;
}
.van-tabs__line {bottom: 8px;width: 31px !important;height: 6px;background-color: #3296fa;
}

目前暂时遇到以上的一些必写的  后续遇到在补充

图片

这篇关于vue vant ui 教程注意事项的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/938893

相关文章

Vue3 的 shallowRef 和 shallowReactive:优化性能

大家对 Vue3 的 ref 和 reactive 都很熟悉,那么对 shallowRef 和 shallowReactive 是否了解呢? 在编程和数据结构中,“shallow”(浅层)通常指对数据结构的最外层进行操作,而不递归地处理其内部或嵌套的数据。这种处理方式关注的是数据结构的第一层属性或元素,而忽略更深层次的嵌套内容。 1. 浅层与深层的对比 1.1 浅层(Shallow) 定义

HarmonyOS学习(七)——UI(五)常用布局总结

自适应布局 1.1、线性布局(LinearLayout) 通过线性容器Row和Column实现线性布局。Column容器内的子组件按照垂直方向排列,Row组件中的子组件按照水平方向排列。 属性说明space通过space参数设置主轴上子组件的间距,达到各子组件在排列上的等间距效果alignItems设置子组件在交叉轴上的对齐方式,且在各类尺寸屏幕上表现一致,其中交叉轴为垂直时,取值为Vert

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template

【 html+css 绚丽Loading 】000046 三才归元阵

前言:哈喽,大家好,今天给大家分享html+css 绚丽Loading!并提供具体代码帮助大家深入理解,彻底掌握!创作不易,如果能帮助到大家或者给大家一些灵感和启发,欢迎收藏+关注哦 💕 目录 📚一、效果📚二、信息💡1.简介:💡2.外观描述:💡3.使用方式:💡4.战斗方式:💡5.提升:💡6.传说: 📚三、源代码,上代码,可以直接复制使用🎥效果🗂️目录✍️

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

Makefile简明使用教程

文章目录 规则makefile文件的基本语法:加在命令前的特殊符号:.PHONY伪目标: Makefilev1 直观写法v2 加上中间过程v3 伪目标v4 变量 make 选项-f-n-C Make 是一种流行的构建工具,常用于将源代码转换成可执行文件或者其他形式的输出文件(如库文件、文档等)。Make 可以自动化地执行编译、链接等一系列操作。 规则 makefile文件

计算机毕业设计 大学志愿填报系统 Java+SpringBoot+Vue 前后端分离 文档报告 代码讲解 安装调试

🍊作者:计算机编程-吉哥 🍊简介:专业从事JavaWeb程序开发,微信小程序开发,定制化项目、 源码、代码讲解、文档撰写、ppt制作。做自己喜欢的事,生活就是快乐的。 🍊心愿:点赞 👍 收藏 ⭐评论 📝 🍅 文末获取源码联系 👇🏻 精彩专栏推荐订阅 👇🏻 不然下次找不到哟~Java毕业设计项目~热门选题推荐《1000套》 目录 1.技术选型 2.开发工具 3.功能

SWAP作物生长模型安装教程、数据制备、敏感性分析、气候变化影响、R模型敏感性分析与贝叶斯优化、Fortran源代码分析、气候数据降尺度与变化影响分析

查看原文>>>全流程SWAP农业模型数据制备、敏感性分析及气候变化影响实践技术应用 SWAP模型是由荷兰瓦赫宁根大学开发的先进农作物模型,它综合考虑了土壤-水分-大气以及植被间的相互作用;是一种描述作物生长过程的一种机理性作物生长模型。它不但运用Richard方程,使其能够精确的模拟土壤中水分的运动,而且耦合了WOFOST作物模型使作物的生长描述更为科学。 本文让更多的科研人员和农业工作者

Vue3项目开发——新闻发布管理系统(六)

文章目录 八、首页设计开发1、页面设计2、登录访问拦截实现3、用户基本信息显示①封装用户基本信息获取接口②用户基本信息存储③用户基本信息调用④用户基本信息动态渲染 4、退出功能实现①注册点击事件②添加退出功能③数据清理 5、代码下载 八、首页设计开发 登录成功后,系统就进入了首页。接下来,也就进行首页的开发了。 1、页面设计 系统页面主要分为三部分,左侧为系统的菜单栏,右侧