logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vue echarts 每次调用接口没有清除上一次内容

initChart() {this.chart = echarts.init(document.getElementById("myChart"))var option = {backgroundColor:'#232d36',tooltip: {trigger: 'axis',axisPointer: {lineStyle: {.

#echarts
vue echarts 柱状图因高度太低难以点击

initChart() {var myChart = echarts.init(document.getElementById('lineChart'));this.chart = echarts.init(this.$el, 'macarons')this.chart.setOption({grid: {left: '3%',right: '4%',.

vue @click.native.prevent=“handleLogin“ 和 @keyup.enter.native=“handleLogin“

一、@click.native.prevent="handleLogin1.在封装好的组件上使用,所以要加上.native才能click2.prevent就相当于..event.preventDefault()所以@submit.native.prevent是用来阻止默认行为的 ;二、@keyup.enter.native="handleLogin"vue运行为v-on在监听键盘事件时,添加了特殊

到底了