Vue.js 定义function时出错

主要原因:<select class=“form-control” id=“labelType” name=“labelType” @click=“selectLabelType()”>

在html中定义@click事件时对函数加了括号。

解决:去掉html里@click事件函数的括号

<select class=“form-control” id=“labelType” name=“labelType” @click=“selectLabelType”>

Logo

前往低代码交流专区

更多推荐