vue使用 echarts单击事件出对话框

新手上路,请多包涵

我是这么写 但是不管用 是为什么呢?

<el-dialog title="项目信息" :visible.sync="chartVisible" width="500px">
        <el-form :model="form">
            <el-form-item label="审计对象及范围" :label-width="formLabelWidth">
            <el-input v-model="form.name" autocomplete="off"></el-input>
            </el-form-item>
            <el-form-item label="工作要求" :label-width="formLabelWidth">
            <el-input v-model="form.name" autocomplete="off"></el-input>
            </el-form-item>
        </el-form>
        <div slot="footer" class="dialog-footer">
            <el-button @click="chartVisible = false">取 消</el-button>
            <el-button type="primary" @click="chartVisible = false">确 定</el-button>
        </div>
    </el-dialog>
this.chartBar.on('click', function (params) { 
                    console.log('params',params)
                    this.chartVisible = true
                });
阅读 5.7k
3 个回答

在写点击事件的时候要把Vue这个对象传进去;

新手上路,请多包涵

事件外面 定义let that = this;
事件里面 this 修改成 that;
今天刚遇到解决了,特来留言

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题