河畔的风

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2020年5月11日

摘要: import Vue from 'vue' import Vuex from 'vuex' import axaios from 'axios' import createPersistedState from "vuex-persistedstate" //将数据持久化, 此方法就是将store中 阅读全文
posted @ 2020-05-11 12:59 河畔的风 阅读(362) 评论(0) 推荐(0) 编辑

摘要: @font-face{ font-family: '字体name'; src: url('../font/本地字体.eot'); src: url('../font/本地字体.eot?#iefix') format('embedded-opentype'), url('../font/本地字体.tt 阅读全文
posted @ 2020-05-11 11:35 河畔的风 阅读(349) 评论(0) 推荐(0) 编辑

摘要: 在组件的index.js文件中export出组件 组件 import Component from './Component ' const MyComponent= { install: function(Vue){ Vue.component('MyComponent',Component ) 阅读全文
posted @ 2020-05-11 11:24 河畔的风 阅读(161) 评论(0) 推荐(0) 编辑

摘要: import axios from 'axios'; import router from '../router' axios.interceptors.request.use( config => { if (localStorage.getItem("token")) { //统一将token带 阅读全文
posted @ 2020-05-11 10:45 河畔的风 阅读(195) 评论(0) 推荐(0) 编辑

摘要: git clone path git pull git mv old_foldername new_foldername 修改文件夹名字, 尽量使用git改文件名或者文件夹名称,否则会导致很多问题 git push orign localBranch:originBranch //根据本地分支新建一 阅读全文
posted @ 2020-05-11 10:31 河畔的风 阅读(138) 评论(0) 推荐(0) 编辑

摘要: function isEmpty(v) { switch (typeof v) { case 'undefined': return true; case 'string': if (v.replace(/(^[ \t\n\r]*)|([ \t\n\r]*$)/g, '').length == 0) 阅读全文
posted @ 2020-05-11 10:17 河畔的风 阅读(311) 评论(0) 推荐(0) 编辑