vue开发常用插件
dependenciesaxios // 用于请求数据better-scroll // 用于处理页面列表的滚动,下拉刷新等fastclick // 用于处理移动设备点击会有300毫秒延迟的问题// src/main.js 中配置import fastclick from 'fastclick'fastclick.attach(document.body)devDependenciesbabel-plugin-import // (使用vantUI时的配置)会在编译过程中将 impor...
2024-01-10vue常用事件
1 <!-- 方法处理器 --> 2 <button v-on:click="doThis"></button> 3 <!-- 内联语句 --> 4 <button v-on:click="doThat('hello', $event)"></button> 5 <!-- 缩写 --> 6 <button @click="doThis"></button> 7 ...
2024-01-10vue常用UI组件
Mint UI项目主页:http://mint-ui.github.io/#!/zh-cndemo:http://elemefe.github.io/mint-ui/#/github地址:https://github.com/ElemeFE/mint-ui中文文档地址:http://mint-ui.github.io/docs/#!/zh-cniviewiView 配套的工作流:https://github.com/icarusion/vue-vueRouter-webpackgithub地址:https:...
2024-01-10vue 常用插件集合(最全)
vue 常用插件集合(最全)原文链接:https://baijiahao.baidu.com/s?id=1629138670094636894&wfr=spider&for=pcUI组件element- 饿了么出品的Vue2的web UI工具套件Vux- 基于Vue和WeUI的组件库mint-ui- Vue 2的移动UI元素iview- 基于 Vuejs 的开源 UI 组件库Keen-UI- 轻量级的基本UI组件合集vue-material- 通过Vue Material和Vue 2建立精美的app应...
2024-01-10第七章、Vue常用插件
目录项目功能插件1、vue-router2、vuex3、vue-cookies4、axios1、vue-routerCopy{ path: '/', name: 'home', // 路由的重定向 redirect: '/home'}{ // 一级路由, 在根组件中被渲...
2024-01-10vue常用的标签
v-html标签v-textv-for 数组和对象的渲染方式v-if 渲染数据的时候,同样也可以使用条件判断v-show 通过样式的display控制标签的显示v-bind 绑定属性 ~~*注意冒号后面跟标签的属性,属性后面的等号指向数据*可以写成:herf :classv-on 可以在标签上使用绑定事件 在methods中,是我们具体事件的实现方式...
2024-01-10vue 常用ui组件库
Mint UI项目主页:http://mint-ui.github.io/#!/zh-cndemo:http://elemefe.github.io/mint-ui/#/github地址:https://github.com/ElemeFE/mint-ui中文文档地址:http://mint-ui.github.io/docs/#!/zh-cniviewiView 配套的工作流:https://github.com/icarusion/vue-vueRouter-webpackgithub地址:https:...
2024-01-10常用maven打包插件
1. maven-jar-plugin 插件使用场景:通常我们在开发的时候会有很多个模块,模块与模块之间的依赖便是通过jar包来导入,形成传递依赖。正常情况下,一个工程打包后就可以提供给其他工程使用。但是如果这个jar自己需要使用,同时又要提供其中一部分能力给别人使用,那么我们就需要将此工程打包成...
2024-01-10vue-cli常用插件安装教程
1.安装sassnpm i sass-loader node-sass --save-dev2.安装styluscnpm install stylus --save-devcnpm install stylus-loader --save-dev3.安装导出excel参考文档:https://www.cnblogs.com/qiu-Ann/p/7743897.htmlnpm install -S file-savernpm install -S xlsxnpm install -D script-loade...
2024-01-10vue.js 常用组件库
vux github ui demo:https://github.com/airyland/vuxMint UI项目主页:http://mint-ui.github.io/#!/zh-cndemo:http://elemefe.github.io/mint-ui/#/github地址:https://github.com/ElemeFE/mint-ui中文文档地址:http://mint-ui.github.io/docs/#!/zh-cniviewiView 配套的工作流:https://github....
2024-01-10【vue】常用操作
https://blog.csdn.net/fyyyr/article/details/83657828二、Vue安装依赖#安装依赖npm install [组件名] --save#卸载依赖npm uninstall [组件名] --save#安装依赖npm install [组件名] --save-dev#卸载依赖npm uninstall [组件名] --save-dev--save 是在package.json的【dependencies】里面--save-dev 是在package.json的【d...
2024-01-10vue开发常用配置
// src/main.jsfunction setHtmlFontSize() { const baseSize = 100 // 由于浏览器字体最小为12px,故这个值要设置大一点,保证计算所得的html字体大于12px const baseWidth = 375 const htmlWidth = document.documentElement.clientWidth || document.body.clientWidth const htmlDom = document.getEleme...
2024-01-10vue页面常用方法
输入框事件监听(三):blur与change的差异iview 验证 trigger: 'blur,change', 同时加两个,省的每次还想input 还是 select4、加载:LoadingLoading 加载audio播放谷歌浏览器不允许网页打开时就播放声音,但可通过先设置静音的方式再播放就可以了嵌套路由感觉默认情况,如果不设置children则会直接全部转过去...
2024-01-10vue常用属性解释。
props:详看 示例-网格组件。 props 可以是数组或对象,用于接收来自父组件的数据。props 可以是简单的数组,或者使用对象作为替代,对象允许配置高级选项,如类型检测、自定义校验和设置默认值。//模版:<demo-grid :data="gridData" // @data 对应props, @gridData 对应 父组件的 data里的值。 :columns="gri...
2024-01-10vue 常用类库引用
js 端生成guid类库一:https://github.com/uuidjs/uuid npm i uuid --save类库二:https://github.com/LiosK/UUID.js npm install uuidjs -savejs 日期处理 : npm i dayjs --save兼容IE9的vue上传控件:npm install vue-upload-component --save...
2024-01-10Vue常用语法
一、模板语法1、双大括号表达式【语法:】{{exp}} 用于向页面输入数据,即页面显示数据。【举例:】<!doctype html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> ...
2024-01-10Java-idea-常用插件
一、插件安装settings→plugins→直接搜索框搜索,没有选择Browse Respositories→找到需要安装的插件,install即可二、常用插件插件名称简介地址备注 Statistic代码统计地址开启视图:View→Tool windows 找到即可 Key promoter快捷键提示地址感觉有点鸡肋 CheckStyle-IDEA代码规范检查地址参看以...
2024-01-10vue--常用指令和事件修饰符
安装官网:https://cn.vuejs.org/下载:https://cn.vuejs.org/v2/guide/installation.html直接通过script在head标签里导入就可以了<script src="../static/vue.min.js"></script>或者通过CDN的方式直接引用<script src="https://cdn.jsdelivr.net/npm/vue"></script>模版语法大家都知道django里的模版语法是{{ }},事情总是巧合的,Vue里的...
2024-01-10IDEA常用插件
lombok 自动生成getter,setterjclasslib 反编译源码 pom.xml文件中依赖<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.12</version> <scope>p...
2024-01-10Vue常用API
数据相关APIVue.set向响应式对象中添加一个属性,并确保这个新属性同样是响应式的,且触发视图更新使用方法: Vue.set(target, propertyName/index, value)<div > <p v-for="(item, index) in items" :key="index">{{item}}</p> <button @click='clickBtn'>点击</button></div><script> const app = new Vue({ ...
2024-01-10vue项目实例-常用标签
感谢:https://www.jianshu.com/p/5d9b341d650f总结:1、<router-link to=\'\'>主要实现跳转链接功能,属性to=\'/\'即是跳转到path为\'/\'的路径.2、v-bind动态绑定指令,格式为:v-bind:你要动态变化的值="表达式"3、v-for列表渲染例:<tr v-for="item in peoples"> <td> {{item.name}} </td> </tr>4、v-show指令与v-if指令的区别就在于...
2024-01-10vue的常用组件操作方法应用分析
项目技术:webpack + vue + element + axois (vue-resource) + less-loader+ ...vue的操作的方法案例:1.数组数据还未获取到,做出预加载的动画<el-carousel :interval="3000" type="card" height="200px" class="common-mt-md"> <el-carousel-item v-for="item in movieArr" :key="item.id" class="text-cen...
2024-01-10常用vue请求交互数据方式
几种 vue的数据交互形式var that=thisget请求that.$http.get("1.txt").then(function(result){console.log(result)this.msg=result.data;})post请求 需要环境 发送数据 接收数据that....
2024-01-10Vue-ui常用组件库整理
Vue-ui常用组件库整理查看全部整理内容==》element-uiElement 是由饿了么UED设计、饿了么大前端开发的一套基于 Vue 2.0 的桌面端组件库。这款是我用了很久的,比较适合开发后台管理系统,官方更新和维护也很负责,组件也能满足大部分开发需求文档官网:http://element.eleme.io/#/zh-CNgithub:http://github.com/elemefe...
2024-01-10Vue 常用指令
指令是以数据去驱动DOM行为,简化DOM操作。常用指令如下v-text innertext,不能解析文本中的html标签v-html innerhtml,可解析文本中的html标签v-show 控制元素的显示、隐藏v-if、v-else-if、v-else 满足条件才显示对应的元素v-for 遍历数组、对象v-bind 单向数据绑定v-model 双向数据绑定v...
2024-01-10