vue
狗_都不做前端
让自己变得强大
展开
-
多行文本框中光标位置插入字符
【代码】多行文本框中光标位置插入字符。原创 2023-02-02 14:14:15 · 172 阅读 · 0 评论 -
app证书生成 和重新签名
加固后重新签名原创 2022-07-27 16:52:06 · 394 阅读 · 0 评论 -
scopedSlots
4、在 render 函数中的使用 slots/slots/slots/scopedSlots有了上面内容的铺垫,可以看到,不论是 $slots 还是 $scopedSlots ,它们的属性都是父组件向子组件注入的内容决定的,只不过 $scopedSlots可以再向父组件抛出数据它们是在模板上编写 后 Vue 替你进行的下一步操作。现在我们在 render 上自己执行它们就第一个 slots 的例子来改,可以改为<template> <div> 我是子组件!原创 2021-12-24 10:14:56 · 3764 阅读 · 0 评论 -
vue 表格滚动
<template> <div class="table-wrapper"> <div class="table-head"> <table class="table-noborder" style="width:100%;table-layout: fixed" align="center" > <thead> <tr&g原创 2021-11-24 08:12:55 · 901 阅读 · 0 评论 -
echarts双折线
<template> <div id="myChart" :style="{width: '100%', height: '100%'}"></div></template><script> import echarts from "echarts"; export default { name: "line", mounted() { this.drawLine原创 2021-11-23 16:19:47 · 1091 阅读 · 0 评论 -
ant datePicker 问题
转载 2021-07-06 17:33:15 · 174 阅读 · 0 评论 -
高德地图轨迹巡航 自定义速度 暂停播放
<template> <a-card> <div class="top"> <a-row :gutter="16"> <a-col :span="24"> <div id="amap-main"></div> <!-- loading--> <div class="loading" v-if原创 2021-03-03 21:36:49 · 1311 阅读 · 2 评论 -
vue-router 前置守卫 与动态路由
import router from "./router/index.js"import {getToken} from "./util/auth";import store from '@/store/';let username = window.location.search?decodeURIComponent(window.location.search.split('?username=')[1]):''router.beforeEach((to, from, next) =>原创 2020-11-02 15:23:39 · 406 阅读 · 0 评论 -
vue element图片预览效果
<template> <div class="home"> <div class="imglist" v-for="(item, index) in imgdata" :key="index"> <h1>{{index}}</h1> <el-image @click="lookMaxImg(item,i)" style="width: 100px; height:原创 2020-11-02 15:19:02 · 820 阅读 · 0 评论 -
XLSX结合 element导出表格
安装依赖 npm install -S file-saver xlsx引入依赖import FileSaver from 'file-saver'import XLSX from 'xlsx'table 代码绑定id outTable<el-table id="outTable" > </el-table>js代码 var xlsxParam = {raw: true};//转换成excel时,使用原始的格式原创 2020-10-29 15:03:01 · 313 阅读 · 0 评论 -
vue打包,首屏加载优化
vue打包后,通常首屏加载过慢vendor.js 过大这里我只介绍两种优化明细的方法1.cdn 替换静态资源减少打包体积定义cnd 数组 (ps:数组要与剔除资源对应)const cdn = { css: [ "https://unpkg.zhimg.com/element-ui@2.13.2/lib/theme-chalk/index.css" ], js: [ "https://unpkg.zhimg.com/vue@2.6.10/dist/vue.min.js", "https:原创 2020-10-13 16:21:14 · 201 阅读 · 0 评论