文章分类 -  vue

摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2022-10-09 23:29 小忱 阅读(58) 评论(0) 推荐(0)
摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2022-10-09 23:28 小忱 阅读(64) 评论(0) 推荐(0)
摘要:<!-- 一、定义语法: (1).局部指令: new Vue({ new Vue({ directives:{指令名:配置对象} 或 directives{指令名:回调函数} }) )} (2).全局指令: Vue.directive(指令名,配置对象) 或 Vue.directive(指令名:回调 阅读全文
posted @ 2022-10-09 23:27 小忱 阅读(100) 评论(0) 推荐(0)
摘要:在日常开发中,我们可能会遇到导出excel word的情况,而后端此时给我们返回的是一个文件流,需要前端将文件流转为url地址进行下载。 可以将这个方法封装成一个工具类,方便其他地方调用,我这里放到了utils.js里面 js: export function exportFile(data,typ 阅读全文
posted @ 2022-08-05 16:24 小忱 阅读(1518) 评论(0) 推荐(0)
摘要:Element-ui中的el-image的图片预览功能(: preview-src-list) 今天用了ement-ui的图片预览功能,但是它的图片现览功能只能现览更先定义的图片与我的业务功能不符 业务功能 我的业务功能就是当点击一行表格中的一个图片时,这个图片就被预览了,代码很简单,就是直按复制e 阅读全文
posted @ 2022-07-19 14:29 小忱 阅读(2891) 评论(0) 推荐(0)
摘要:1. Vue-cli2 升级到 Vue-cli3+ 卸载旧版本 Vue CLI 的包名称由 vue-cli 改成了 @vue/cli。 如果你已经全局安装了旧版本的 vue-cli (1.x 或 2.> x),需要先卸载它。 npm uninstall vue-cli -g // 或 yarn gl 阅读全文
posted @ 2022-04-24 11:43 小忱 阅读(1971) 评论(0) 推荐(0)