相对原教程,我在学习开始时(2023.03)采用的是当前最新版本: 项版本react & react-dom^18.2.0react-router & react-router-dom^6.11.2antd^4.24.8@commitlint/cli & @commitlint/config-conventional^17.4.4eslint-config-prettier^8.6.0husky^8.0.3lint-staged^13.1.2prettier2.8.4json-server0.1
2024-12-02●html <button type="button" class="btn btn-default btn-circle"><i class="glyphicon glyphicon-ok"></i></button> <button type="button" class="btn btn-primary btn-circle"><i class="glyphicon glyphicon-list"></i></button> <button type="button" class="btn
2024-12-02前言: 本职Java后端偏大数据,但由于工作的需要,最近又狠狠写了一把Vue,对于前端的学习一直比较碎片化,所以遇到的-所谓的问题也是难度各异,在这里做一点记录,欢迎前端大佬指导。 本篇公号主要包括以下几个前端小问题: Js中const,var,let区别与用法vue报错:use a data or computed property based on the prop's value.vue报错:The data property "xxxxx" is already declared as
2024-12-02一:环境安装 1:背景 本项目使用reactjs的create-react-app 作为脚手架,使用ant-design为ui框架。本项目基于node运行,搭建项目前请自行安装并配置环境变量。(安装过程略) 2:包管理工具 安装完node之后,node自带的npm包管理工具可以使用,但是使用的国外镜像某些时候比较慢,所以建议切换为yarn包管理工具。打开终端执行以下命令: // 安装yarn npm install -g yarn // 切换为淘宝的源 yarn config set regis
2024-12-02<template> <el-table :data="tableData" :cell-style="{ 'text-align': 'center' }" :header-cell-style="{ background: '#c0c1c4', color: '#1e1f22', height: '35px
2024-12-02option = { tooltip: { trigger: 'axis', axisPointer: { type: 'shadow' } }, grid: { left: '3%',
2024-12-02<el-aside width="200px" class="aside"> <div v-for="item in navListCopy" :key="item.name"> <div class="nav" :class="{ navSelect: item.isSelect }" @click="handleNavClick(item)"
2024-12-02今天我的一个朋友找我说,el-radio怎么去掉前边那个圆 去掉之前 代码 ::v-deep .el-radio__input { display: none ; } 效果 完活。
2024-12-02需求说明 1、根据后台传值动态显示开关(0为关,1为开) 2、对开关进行操作时请求后台,需要传两个参数:ID,State 需求描述 我先说我的需求,我想在列表的每一条添加一个开关,可以改当前一条数据的状态,并发送到服务端,并根据服务端返回的结果局部刷新当前一条数据 期望结果 已读和未读是后端返回给我的状态,分别是1和2,我先点击switch发送给后端这条数据的id,然后修改这一条数据的状态,而不是重新拿这个列表,如果后端返回失败的情况这个switch不做改变 <el-switch v-mode
2024-12-02实现效果: template: <!--产品白名单--> <div class="con-item" v-if="current == 0"> <el-form-item label="平台名称"> <div class="contaion" @click="onclick"> <!-- 生成的标签 --> <div v-for="(
2024-12-02