摘要: 1、创建一个新的Vue项目 vue create wangeditor-demo 2、进入创建的新项目 cd wangeditor-demo 3、安装vue项目所需的依赖 npm install 4、下载安装wangeditor包 npm install wangeditor 5、进入vue项目中, 阅读全文
posted @ 2021-09-08 15:49 我是橘子 阅读(429) 评论(0) 推荐(0) 编辑
摘要: 1、命令行npm install echarts -S 没有安装npm的先另行百度安装 2、main.js中引入 import echarts from 'echarts'; Vue.prototype.$echarts = echarts; 3、创建一个Vue文件,引入 <template> <d 阅读全文
posted @ 2021-09-08 15:48 我是橘子 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 假设将所有男同学都分到id为1的班级 从class(班级表)中查出id为1的班级名,从student(学生表)中查到所有男的学生id和名字,插入到学生班级表中 方式1: insert into tbl_stu_class ( SELECT tbl_class.cl_id, tbl_student.s 阅读全文
posted @ 2021-09-08 15:45 我是橘子 阅读(2478) 评论(0) 推荐(0) 编辑