This dependency was not found:
* core-js/modules/es.regexp.dot-all.js in ./src/utils/index.js
To install it, you can run: npm install --sa...
yekong
3年前 (2021-12-14)
喜欢
第一种方法
getqx (e) {
var data = this.qx
var isshow = false
data.forEach((type) => {
if (e == type) {
...
yekong
3年前 (2021-12-12)
喜欢
更多进度条效果实例
vue 数据可视化大屏进度条效果实例
<template>
<div class="centerpr">
<div class="centerprs">
&l...
yekong
3年前 (2021-12-08)
喜欢
定义
<slot name="title"></slot>
使用
<div slot="title" class="downx">
</div>
使用
<temp...
yekong
3年前 (2021-12-08)
喜欢
computed: {
list2: function () {
let total = 0
var list2 = this.list;
var list = []
this.list.forEach((type) ...
yekong
3年前 (2021-12-04)
喜欢
Vue开发时,经常会遇到写切换,每次都要手写一般很累人,存个备份留待后期复用。
<template>
<div class="tabs">
<div class="tab cur" :class=...
yekong
3年前 (2021-12-04)
喜欢
可以获取到当前网页宽度和当前网页高度
mounted() {
window.addEventListener('resize', this.getHeight)
},
methods: {
getHeight(e) {
con...
yekong
3年前 (2021-12-03)
喜欢
vue项目开发时可能会使用iframe引入页面,留个实例,方便后期用到的时候回查
<template>
<div>
<iframe class="iframe" id="template-iframe&quo...
yekong
3年前 (2021-12-02)
喜欢
vue项目开发中,经常需要一些列表滚动效果,之前一直使用的是liMarquee,一个滚动的时候,效果还可以,多个滚动的时候总感觉有点不对,就换了一个插件
安装依赖
npm i vue-seamless-scroll --save
使用
<vue-seamless...
yekong
3年前 (2021-11-30)
喜欢
vue项目开发中,会遇到切换页面时,上一个页面的接口还在请求,当只有一两个页面的时候,无所谓,但是当页面有几十个接口的话,就有必要切换页面是,结束上一页未完成的无效请求,以节省接口资源。
切换页面时,由于上一页面请求执行时间长,切换到该页面时,还未执行完,这时那个请求仍会继续执行...
yekong
3年前 (2021-11-29)
喜欢