vue
cherrylovewangcai
这个作者很懒,什么都没留下…
展开
-
vue动态创建组件,类似element-ui
https://zhuanlan.zhihu.com/p/38310370转载 2020-06-28 20:30:51 · 506 阅读 · 3 评论 -
vue中transition进场动画不生效,离开动画生效
如果想要在页面初始化时播放动画需要添加appear和appear-active-class解决:1.加appear<transition name="slide" appear></transition>2 加v-if<transition name="slide" > <div class="detail" v-if="id"></div> </transition>...原创 2020-06-23 21:17:35 · 4450 阅读 · 1 评论 -
在vue中使用better-scroll实现轮播图
单独封装slider组件父组件<slider> <div v-for="item in recommends"> <a href="item.linkUrl"> <img :src="item.picUrl"> </a> </div></slider>子组件<d...原创 2020-01-06 20:17:15 · 394 阅读 · 0 评论 -
在vuex中使用moudle
安装npm install vuex --save引入//main.jsimport store from './store'//引入storenew Vue({ el: '#app', router, store, components: { App }, template: '<App/>'})新建store文件夹目录结构sto...原创 2019-12-25 14:11:46 · 155 阅读 · 0 评论 -
多条件组合查询
前台代码 //多条件作何查询 getHistoryByCon:function(){ let _that = this; let indexC = _that.data.indexC; let index = _that.data.arrayC[indexC]; console.log(indexC,index) if (_that.data.arra...原创 2019-11-21 17:38:16 · 1159 阅读 · 0 评论 -
vue渲染三级表格
<template> <div> <table cellspacing="0" border="1"> <tr> <th v-for="(item,index) in title"> {{item.title}} </th> </tr> <temp...转载 2020-06-16 09:11:38 · 944 阅读 · 0 评论 -
vue渲染合并单元格数据
<!-- * @Author: your name * @Date: 2019-10-22 10:31:31 * @LastEditTime: 2019-10-22 13:19:49 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /mongotes...转载 2020-06-16 09:11:46 · 752 阅读 · 2 评论 -
vue中导出带有合并单元格的excel
安装blob和export2excel两个文件放到vendor文件夹下原创 2020-06-16 09:12:42 · 2133 阅读 · 3 评论