当前位置:首页 > 经验笔记

基于Vue的移动端图片裁剪组件(vue-imgcut)

han32684年前 (2021-04-15)3654
基于Vue的移动端图片裁剪组件(vue-imgcut)
安装:npm install vue-imgcut –save使用代码:<template>     <div...

composer 安装一直卡住不动(Loading composer repositories with package information)

han32684年前 (2021-03-24)9741
安装提示# Loading composer repositories with package information这主要是因为“中国长...

html头部底部固定高度中间大小自适应填充满屏幕css写法

han32684年前 (2021-03-22)2596
第一种写法:使用display: flex<!DOCTYPE html> <html lang="en"> <head>...

vue引入本地json数据文件

han32684年前 (2021-03-22)3052
    data() {         return {...

在vue中实现element-ui的el-dialog弹框拖拽

han32684年前 (2021-03-17)2659
1.在assets/js/文件夹下新建directives.js 文件:import Vue from 'vue' // v-dialog...

设置端口映射从外网访问内网的共享文件(需公网ip )

han32685年前 (2021-01-08)13651
开启端口映射,从外网访问内网的文件共享:    以前我的做法是远程控制软件比如teamviewer或者radmin控制内网一台电脑后再通过其访问内网,缺点是要装软件,有办法直接通过...

Echarts图表的悬浮框位置的调整

han32685年前 (2021-01-07)4298
下面的代码实现了悬浮框的位置不会超出界面 最多在离界面边缘5px的地方tooltip: {         ...

使用git bash统计vue项目的代码量行数

han32685年前 (2021-01-07)3862
需求想要统计一下自己写的vue项目的代码量。主要是src文件夹下的html、css、js、vue文件的总代码量解决方案使用git bash,切换至vue项目的src目录下,然后输入如下命令:find&...