logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

github组件库连接

https://github.com/element-plus/element-plus/blob/dev/packages/components/button/src/button.vueelement-plus链接https://github.com/arco-design/arco-design-vue/blob/main/packages/web-vue/components/button

文章图片
#github#vue.js#前端
git 新入职员工流程

新入职员工工作流程git clone我们可以和远程建立链接将本地仓库和线上仓库建立关联:git remote add origin [线上仓库的SSH地址]如果在执行这句话的时候报错:fatal: remote origin already exists.那么就先执行 git remote rm origin再重新执行 git remote add origin [线上仓库的SSH地址]代码添加到

文章图片
#git
前端工程化配置指南

超全面的前端工程化配置指南

#前端#javascript#typescript
vue请求拦截案例

import axios from 'axios';import {getToken} from '@/utils/token'import { Message } from 'element-ui'axios.defaults.baseURL = 'http://139.196.42.209:5004/api/';//请求拦截器axios.interceptors.request.use(fun

keep-alive属性及生命周期

保留组件状态,避免重新渲染include 字符串或正则表达式,只有名称匹配的组件会被缓存exclude 字符串或正则表达式,任何名称匹配的组件都不会被缓存max 数字,最多可以缓存多少组件实例<keep-alive include="test-keep-alive">//将缓存name为test-keep-alive的组件<component></component&

es6 export和module.exports的用法

'use strict'//导出变量export const a = '100';//导出方法export const dogSay = function(){console.log('wang wang');}//导出方法第二种function catSay(){console.log('miao miao');}export { catSay };//export default导出const

#javascript#前端#开发语言
暂无文章信息