Vue定时器清理 2019-05-05 vue 约 163 字 预计阅读 1 分钟 直接在需要定时器的方法或者生命周期函数中声明并销毁 1 2 3 4 5 6 7 8 9 10 11 12 13 14 export default{ methods:{ getGameList(){ const timer = setInterval(()=>{ //需要做的事情 console.log( 阅读更多
Vue中Axios请求全局配置 2019-04-10 vue 约 186 字 预计阅读 1 分钟 文件引入 1 2 import Vue from 'vue' import axios from 'axios' 全局参数 1 Vue.prototype.$http = axios 请求头Header 1 2 3 4 5 6 7 8 9 10 11 axios.interceptors.request.use(function (config) { config.headers['Content-Type'] = 'application/json;charset=UTF-8' const token = localStorage.getItem('token') const TGC = getCookie('TGC') if (TGC) { config.headers.Authorization = TGC } else if (token) { config.headers.Authorization = token 阅读更多
ElementUI中统计Table筛选结果数量 2018-10-26 UI 约 1238 字 预计阅读 3 分钟 1、el-table标签栏添加@filter-change="filterChange" 2、需过滤的列el-table- 阅读更多
Hugo、Hexo博客搭建及Hugo的自定义配置 2018-06-24 blog 约 2769 字 预计阅读 6 分钟 1 Hugo介绍 世界上最快的网站构建框架。 Hugo是最受欢迎的开源静态站点生成器之一。凭借其惊 阅读更多