摘要: 0. 新建js文件 demo.js(编译器:vscode) axios 的基础使用: 1. 引入 axios: const axios = require('axios'); 2. 测试用接口(来自黑马课程,查询到的是假数据): var weatherList;//node.js不支持中文,直接写" 阅读全文
posted @ 2022-06-30 17:03 sunshine233 阅读(736) 评论(0) 推荐(0) 编辑
摘要: vue2中echarts的安装和显示中国地图:/sunshine233/p/16140522.html 鼠标事件: https://echarts.apache.org/zh/api.html#echartsInstance.on echarts.get 阅读全文
posted @ 2022-04-14 15:18 sunshine233 阅读(1039) 评论(0) 推荐(0) 编辑
摘要: 1、 npm 安装 echarts4.9(全局引入不支持5.0) npm install echarts@4.9.0 2、 main.js中全局引入echarts: //main.js import echarts from 'echarts' Vue.prototype.$echarts = ec 阅读全文
posted @ 2022-04-13 15:36 sunshine233 阅读(7573) 评论(0) 推荐(0) 编辑
摘要: 0. 组件和插槽区别 组件是Vue插槽中最为关键的一个特性之一,而插槽是组件的一大亮点。插槽是为组件服务的,让组件更灵活多用。 1. 默认插槽、具名插槽的通用格式(#myName 是 v-slot:myName的缩写):建议使用通用格式 <template> 元素中的所有内容都将会被传入相应的插槽。 阅读全文
posted @ 2022-04-06 15:55 sunshine233 阅读(1589) 评论(0) 推荐(0) 编辑
摘要: watch 监听 data 中的数值,需要先在watch:{ } 中绑定要监听的值,监听的数值只要变化,就执行 watch 1. 默认情况下,变量被初始化的时候,watch 不会立即执行,如果想要立即执行,使用 watch 的immediate 属性。 2. 如果watch监听的是一个对象,则对象中 阅读全文
posted @ 2022-04-01 14:30 sunshine233 阅读(371) 评论(0) 推荐(0) 编辑
摘要: demo.js var arrayList = [{ id: 1, name: "zs", scope: 56 }, { id: 2, name: "ls", scope: 86 }, { id: 3, name: "wu", scope: 22 }, { id: 4, name: "cl", sc 阅读全文
posted @ 2022-03-30 17:32 sunshine233 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 参考网址: [1] https://www.freesion.com/article/7191968296/ [2] http://www.axios-js.com/zh-cn/docs/ [3] https://github.com/axios/axios/blob/master/README.m 阅读全文
posted @ 2022-03-15 10:22 sunshine233 阅读(464) 评论(0) 推荐(0) 编辑
摘要: 在项目文件中生成 package.json 文件: npm init -y git 上传项目时忽略 node_modules文件夹: 在项目文件夹里添加.gitignore的文件; 打开文件,在里面添加 /node_modules 从git 仓库下载项目安装所有的 npm 包: 直接使用 npm i 阅读全文
posted @ 2022-03-04 17:20 sunshine233 阅读(640) 评论(0) 推荐(0) 编辑
摘要: 一、matlab 更改打开时的默认路径 参考网址:/mat-wu/p/6135555.html 二、matlab 预定义的特殊变量 pi, i, j, clock, date都是matlab预定义的特殊变量,命名的时候注意不要重名。 三、matlab 简 阅读全文
posted @ 2022-03-01 17:32 sunshine233 阅读(642) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-02-11 14:03 sunshine233 阅读(13) 评论(0) 推荐(0) 编辑