Activity Calendar
Count the number of articles and author reviews over the last 10 months
Loading...
Radar Chart
Loading...
Release Chart
Loading...
Classification Chart
Loading...
Tag Chart
Loading...
时光机
新
时光机
做好自己就行了,不用太在意别人
November 6th, 2020 at 08:58 pm
本科考试终于考完了,开心
October 25th, 2020 at 03:45 pm
此条为私密说说,仅发布者可见
October 12th, 2020 at 08:48 am
username
password
Login
logging in...
文章
时光机
Articles in the category of Vue
Vue
Home
Vue
在vue里面安装echarts以及踩得坑
直接安装:echarts vue-echarts最近echarts更新到了5.0.1版本,安装老是报错:"export 'default' (imported as 'echarts') was not found in 'echarts'"发现还算echarts: 4.9.0 版本最为稳定,解决方法:先卸载echarts: yarn remove echarts安装4.9.0版本:yarn...
逸云先生
January 22, 2021
1 comments
vue项目中实时监测浏览器滚动条的高度
**1、在mounted生命周期函数注册滚动条事件**```javascript mounted() { window.addEventListener('scroll', this.windowScroll) } ```**2、在methods方法里使用**```javascript methods: { windowScroll() { // 滚动条距离页面顶部的距离 // 以下写法原生...
逸云先生
January 16, 2021
No comments
vue之父子组件传值
### **父组件向子组件传值**#### 这是父组件``` import son from './son.vue'; export default { components: { son, }, data() { return { title: '我是父组件的传过来的值', }; }, }; ...
逸云先生
December 31, 2020
No comments
vue的一些库
vue-backtotop:vue返回顶部的库vue-notification:vue消息弹窗vue-vuelidate: vue实现表单验证vue-is-mobile:vue判断是否是移动端待补充...
逸云先生
December 14, 2020
No comments
javascript里面2种方法实现模糊查询数组和对象
## 第一种:#### html部分:```{{item}}```#### js部分:``` var vm = new Vue({ el: '#app', data: { sreach:'', list: [ 'html', 'css','js' ], }, computed: { find() { return this.list.filter(item=> item.indexOf(th...
逸云先生
December 9, 2020
1 comments
Vue光标默认在指定输入框
在想要加光标的html上加上id=“XX” XX是什么你自己写 在mounted里面写上``` this.$nextTick( window.onload = function () { // 光标默认位置 var oInput = document.getElementById('XX'); oInput.focus(); }) ```
逸云先生
November 14, 2020
No comments
如何在Vue项目中使用vw实现移动端适配
``` // postcss.config.js module.exports = { plugins: { "postcss-px-to-viewport": { viewportWidth: 750, // 视窗的宽度,对应的是我们设计稿的宽度,一般是750 viewportHeight: 1334, // 视窗的高度,根据750设备的宽度来指定,一般指定1334,也可以...
逸云先生
October 11, 2020
No comments
vue安装yarn
说明:本人比较喜欢用yarn run 口令 1全局安装yarnnpm i -g yarn2.安装yarn的淘宝镜像yarn config set registry https://registry.npm.taobao.org3.安装项目依赖 yarn install4.开发 yarn run dev5.打包 yarn run build查看版本 yarn -V
逸云先生
March 13, 2020
No comments
Article Directory