摘要: 一、安装插件 npm install vue-i18n --save 二、为了后续方便管理,在src下新建一个plugins文件夹专门管理插件 三、在plugins下新建i18n.js文件 import Vue from 'vue' import VueI18n from 'vue-i18n' Vu 阅读全文
posted @ 2020-12-04 15:30 SLfish 阅读(2652) 评论(0) 推荐(0) 编辑
摘要: 第一步首先 npm install svg-sprite-loader --save 在assets文件夹下创建icons文件夹用来存放svg文件夹和index.js文件 index.js import Vue from 'vue' import SvgIcon from '@/components 阅读全文
posted @ 2020-11-19 11:04 SLfish 阅读(1087) 评论(0) 推荐(0) 编辑
摘要: 创建一个组件,自己起一个名字 <template> <div ref="scroll"> <slot></slot> </div> </template> <script> export default { name: 'GanAnimate', props: { direction: { type 阅读全文
posted @ 2020-09-17 17:35 SLfish 阅读(1874) 评论(0) 推荐(0) 编辑
摘要: <script> var array = [ { count:1, itemName:"007" }, { count:2, itemName:"008" } ] var result = array.map(item => { return { value: item.count, name:it 阅读全文
posted @ 2020-09-15 14:01 SLfish 阅读(2977) 评论(0) 推荐(0) 编辑
摘要: 新建一个clipboard.js来存放clipboard方法 npm install clipboard --save import Vue from 'vue' import Clipboard from 'clipboard' // 文本复制 function copySuccess() { V 阅读全文
posted @ 2020-09-15 11:04 SLfish 阅读(7503) 评论(0) 推荐(0) 编辑
摘要: 下载插件 xlsx,file-saver npm install xlsx npm install file-saver 创建 js 文件,导入代码进行配置 import XLSX from "xlsx" import { saveAs } from 'file-saver' // 将json数据处 阅读全文
posted @ 2020-09-12 11:22 SLfish 阅读(397) 评论(0) 推荐(0) 编辑
摘要: 为了消除各浏览器对css默认的设置,保持网页在各浏览器中的外观保持一致,初始化css就显得非常必要了!很多时候出现的样式不兼容问题,都可以通过css初始化代码来解决。下面列举常用的一些方案: 1.最耗资源的,最简单的 * { padding: 0; margin: 0; border: 0; } 2 阅读全文
posted @ 2020-09-07 15:08 SLfish 阅读(4596) 评论(0) 推荐(0) 编辑
摘要: /*css*/ body { margin: 0; padding: 0; background-color: #F7F7F7; } .box { width: 200px; height: 200px; text-align: center; line-height: 200px; font-si 阅读全文
posted @ 2019-12-10 16:34 SLfish 阅读(251) 评论(0) 推荐(0) 编辑
摘要: /* 单行文字溢出省略号 */ overflow: hidden; text-overflow:ellipsis; white-space: nowrap; height: xxx; // 在各个浏览器之间的兼容问题 transform: translateY(-30px); -ms-transfo 阅读全文
posted @ 2019-11-30 10:05 SLfish 阅读(236) 评论(0) 推荐(0) 编辑
摘要: github上的vue汇总https://github.com/vuejs/awesome-vue#qr-code 一、UI组件及框架 element - 饿了么出品的Vue2的web UI工具套件 mint-ui - Vue 2的移动UI元素 iview - 基于 Vuejs 的开源 UI 组件库 阅读全文
posted @ 2019-11-28 10:11 SLfish 阅读(2838) 评论(0) 推荐(1) 编辑