摘要:
function deepConst(data){ Object.freeze(data); for(let key in data){ let prop = data[key]; if(!data.hasOwnProperty(key) || !(typeof prop === "object") || Object.isFrozen(prop)){ con... 阅读全文
摘要:
调用 axios js 阅读全文
摘要:
添加babel插件 packjson.json .babelrc webpack 配置 webpack.base.conf.js router index.js 阅读全文
摘要:
setInterval(() => { const now = new Date(); const hours = now.getHours().toString(); const minutes = now.getMinutes().toString(); const seconds = now.getSeconds().toString(); ... 阅读全文
摘要:
使用 阅读全文
摘要:
'use strict' import axios from 'axios' import qs from 'qs' import { Message } from 'element-ui'; axios.interceptors.request.use(config => { // loading return config }, error => { re... 阅读全文
摘要:
a[href^="http://"]{ padding-right: 20px; background: url(external.gif) no-repeat center right; } /* emails */ a[href^="mailto:"]{ padding-right: 20px; background: url(email.png) no-re... 阅读全文
摘要:
这些也是自己平时项目中遇到过的一些问题,看到有人整理了出来,也就转载保存一下 文章内容总结: 组件style的scoped Vue 数组/对象更新 视图不更新 vue filters 过滤器的使用 列表渲染相关 深度watch与watch立即触发回调 这些情况下不要使用箭头函数 路由懒加载写法 路由 阅读全文
摘要:
由于Message组件并没有install 方法供Vue来操作的,是直接返回的,因此按照官方文档单独引入的方法是会报错的,需要给 Message 添加 install 方法 阅读全文