logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

关于Linux遇到:network is unreachable的解决方法

问题解决方法#第一步cd /etc/sysconfig/network-scripts/vi ifcfg-ens3把no 改为yes最后重启service network restart后就能ping通外网啦

Element-UI el-table 显示错位问题解决方案

场景:el-table新加列后表头错位css处理方法.el-table--border th.gutter:last-of-type {display: block !important;width: 17px !important;}

如果遇到 vue-loader was used without the corresponding plugin

如果遇到:ERROR in ./App.vueModule Error (from ./node_modules/vue-loader/lib/index.js):vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin in your webpack config....

ngrok内网穿透 vue 返回 invalid host header解决办法

使用ngrok内网穿透只返回304,invalid host header原因:新版的webpack-dev-server出于安全考虑,默认检查hostname,如果hostname不是配置内的,将中断访问。解决:webpack.dev.conf.js添加配置 disableHostCheck: true,disableHostCheck: true...

vuex动态获取localStorage里面存储的数据

import vuex from 'vuex'Vue.use(vuex)//挂载const store = new vuex.Store({state: {scrollTag: false,currency: 'HKD'},mutations: {getScolltagTrue(state) {state.scrollTag = ...

vue style中background-image图片路径问题

<div class="active-img" :style="{backgroundImage:`url(${item.goods_image})`在这里插入代码片`}">这个是简单写法<div :style="{backgroundImage: 'url(' +item.goods_image + ')'}">这个是 拼接 写法...

vue获取滚动的scrollTop的值

mounted() {// let _this=thiswindow.addEventListener('scroll', () => {let top = document.documentElement.scrollTop || do...

element-ui DatePicker 日期选择后格式化为yyyy-mm-dd格式的处理

使用format指定输入框的格式;使用value-format指定绑定值的格式。例子<el-date-pickerv-model="orderRequire.birthday"value-format="yyyy-MM-dd"type="date"pl...

FRP内网穿透实现

FRPS配置Frp服务端配置:bind_port = 7000#与客户端绑定的进行通信的端口token = 12345678#秘钥可以自己修改启动命令./frps -c ./frps.ini 临时启动nohup ./frps -c ./frps.ini & 后台启动客户端[common]server_addr = 100.100.112.177 公网服务器ipserver_port = 7

#php
Linux上安装nvm

第一步安装curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash第二步export NVM_DIR="${XDG_CONFIG_HOME/:-$HOME/.}nvm"[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # ...

    共 16 条
  • 1
  • 2
  • 请选择