vue封装一些常用组件loading.switch.progress github文档https://github.com/zengjielin/vue-component-library loading组件 条形进度条 圆形进度条 switch组件…
3d picker组件 参考链接:https://segmentfault.com/a/1190000007253581?utm_source=tag-newest安装:npm install vue-3d-picker --save 特例1: 手动改变 操作项 的values,此处注意 设置的数组 是需要 基于 vue this下的,直接赋值 数组,不好使. 特例2: 在ios端,像素太好,出现层叠.解决:修改源码picker-item.vue文件,setAlpha方法 拖拽组件 vue-sl…
<template> <div :style="{color: fontColor}" :class="['noDataView', iconType]"> <div class="icon"> <icon-svg type="svgIcon_emptyDataClient"></icon-svg> </div> </div> <div…
<!-- 自定义Echarts * options: Object,//数据 * theme: String,//主题 * initOptions: Object,//初始化 * group: String,//分组 * autoResize: Boolean,//自适应 * modules: Array,//模型 --> <template> <div style="height: 100%;width:100%"></div> <…
1.RN中的常用组件-----图片 本地图片: <Image  source={require('../src/assets/x.jpg')}/> 本地图片可以无需指定尺寸(因为导入/打包在服务器端进行),默认是原始尺寸;如果指定了width,height不会自动的修改, 也必须手工赋值. 远程图片:<Image  source={ {uri:'http://t.cn/logo.png'} }  style={{width:x,height:x }}/> 注意:Image的sour…
使用方法: 1.在父组件中引入"box.vue" //import popUpBox from "./box.vue";   2.在父组件中注册 popUpBox //components:{popUpBox},   3.放在父组件中使用 //<popUpBox></popUpBox>   4.调用popUpBox组件 //this.geAlert(0)   注:index.vue为 父组件,后者为子组件,效果图先上,可以先看是否是自己想要的…
使用Vue做双向绑定的时候,可能经常会用到分页功能 接下来我们来封装一个分页组件 先定义样式文件 pagination.css ul, li { margin: 0px; padding: 0px;} .page-bar { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-sel…
amazeui学习笔记--css(常用组件13)--进度条Progress 一.总结 1.进度条基本使用:进度条组件,.am-progress 为容器,.am-progress-bar 为进度显示信息. <div class="am-progress"> <div class="am-progress-bar" style="width: 30%"></div> </div> <div cla…
1.vue 封装utils.js /** * @param {function} func 执行函数 * @param {number} time 防抖节流时间 * @param {boolean} isDebounce [1,3]为防抖组件,[2]为节流组件 * @param {this} ctx this 的指向 */ const debounce = (func, time, isDebounce, ctx) => { var timer, lastCall, rtn; // 防抖函数 i…
封装一个ECharts组件的一点思路 有关后台管理系统之前写过三遍博客,看这篇之前最好先看下这三篇博客.另外这里只展示关键部分代码,项目代码放在github上: mall-manage-system 1.Vue + Element-ui实现后台管理系统(1) --- 总述 2.Vue + Element-ui实现后台管理系统(2) --- 项目搭建 + ⾸⻚布局实现 3.Vue + Element-ui实现后台管理系统(3) --- 面包屑 + Tag标签切换功能 这篇主要讲解实现图表的功能:…