摘要: nuxt报错 Cannot start nuxt: Cannot read property 'name' of undefined node版本不够 我用的node版本14+,会报这个错误 node版本换成了16+,可以启动成功 阅读全文
posted @ 2023-05-09 14:13 敲敲碰碰 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 一、创建和查看数据表 创建数据表:前提要选择一个数据库,命令:USE 数据库; CREATE TABLE 表名称(字段名 数据类型,...);CREATE TABLE user(u_name VARCHAR(10), u_age int(3),u_sex VARCHAR(1)); 查看所有数据表 S 阅读全文
posted @ 2023-04-08 17:54 敲敲碰碰 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 一、创建和查看数据库 创建数据库: CREATE DATABASE 数据库名称;CREATE DATABASE 数据库名称 CHARACTER SET gbk; (创建时指定编码) 查看所有数据库 SHOW DATABASES; 查看已创建的数据库信息 SHOW CREATE DATABASE 数据 阅读全文
posted @ 2023-03-28 10:40 敲敲碰碰 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 类型改为HTMLInputElement类型即可。 阅读全文
posted @ 2023-03-27 14:22 敲敲碰碰 阅读(642) 评论(0) 推荐(0) 编辑
摘要: <el-table :data="returnList" border :span-method="objectSpanMethod"> 1. objectSpanMethod({ row, column, rowIndex, columnIndex }) { if (columnIndex 0) 阅读全文
posted @ 2023-01-13 14:05 敲敲碰碰 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 1.git config user.name // 查看 2.输入git config --global user.name "用户名"进行修改 阅读全文
posted @ 2022-10-19 16:06 敲敲碰碰 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 添加该属性即可:autocomplete="new-password" 阅读全文
posted @ 2022-10-11 16:55 敲敲碰碰 阅读(17) 评论(0) 推荐(0) 编辑
摘要: /** * 排序比较 * @param {string} propertyName 排序的属性名 * @param {string} sort ascending(升序)/descending(降序) * @return {function} */ // compare(propertyName, 阅读全文
posted @ 2022-10-09 18:58 敲敲碰碰 阅读(40) 评论(0) 推荐(0) 编辑
摘要: #scrollbar::-webkit-scrollbar { // 滚动条整体部分,其中的属性有width,height,background,border(就和一个块级元素一样)等。 width: 4px; height: 4px; } #scrollbar::-webkit-scrollbar 阅读全文
posted @ 2022-09-14 20:16 敲敲碰碰 阅读(473) 评论(0) 推荐(0) 编辑
摘要: 第一种写法: .bannerBox { width: 100%; height: 310px; background: url(../../assets/img/Admin.png) no-repeat; background-size: cover; background-position: ce 阅读全文
posted @ 2022-09-07 14:54 敲敲碰碰 阅读(139) 评论(0) 推荐(0) 编辑