logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

git 更新本地分支

问题:由于在远程删除了分支,有时候本地不能更新到,所以再次操作已删除的分支时git会报错, 此时只需要刷新一下分支列表即可正常操作。解决:git remote update origin --prune# 简写git remote update origin --p...

#git
ant.design.vue中table的使用说明

table的创建<a-table:columns="columns" // 表头:dataSource="data" // 数据源:loading='loading' // 加载loading:pagination="pagination"// 页脚:scroll="scroll" // 控制table的滚动:rowKey="setTableKey"...

ant-desigin-vue中form表单的使用

form表单的使用form表单之获取表单的数据创建表单通过ant-design-vue去获取表单的数据是使用v-decorator的方式去给每个项去注册,这样才能通过组件去拉取表单的数据,同时对必填项做校验;&lt;template&gt;&lt;a-form @submit="handleOk" :form="form"&g

#javascript
nth-of-type() 详解

nth-of-type() 详解ele:nth-of-type(n)表示选择父元素下的第 n 个 ele 元素,其中 n 可以是正整数、公式或者关键字。同时, ele 一般是标签选择器。<style>* {margin: 0;padding: 0;}.box {width: 400px;height: 200px;margin: 100px auto;border: 1px solid

#css3#html#css
nth-of-type() 详解

nth-of-type() 详解ele:nth-of-type(n)表示选择父元素下的第 n 个 ele 元素,其中 n 可以是正整数、公式或者关键字。同时, ele 一般是标签选择器。<style>* {margin: 0;padding: 0;}.box {width: 400px;height: 200px;margin: 100px auto;border: 1px solid

#css3#html#css
react-router-dom v6 使用

react-router-domreact-router-dom v6 整体体验相对于 v5 ,体验要好更多,最大的一个改变,就是曾经的 Route 不可嵌套,整个路由配置必须拆分成若干小块,除非通过 react-router-config 这种插件,才可以实现对整个路由的管理,然而现在,不需要任何插件就可实现对路由配置的管理。官网地址: react-router当前例子,根据分支对应例子:rea

#javascript
到底了