vue插槽里点击事件打包后不起作用?

 <el-table :data="userslist" border max-height="651">
        <el-table-column label="抓拍图">
          <template width="90" slot-scope="scope">
            <div @click="imgClick(scope)" class="PaiImg">
              <img
                style="width:120px;height:120px;border:none;"
                :src="scope.row.PicBase64"
              />
            </div>
          </template>
        </el-table-column>
        <el-table-column label="设备ID" prop="DeviceCode"></el-table-column>
        <el-table-column label="数量" prop="DInfo"></el-table-column>
        <el-table-column label="算法类型" prop="DType"></el-table-column>
        <el-table-column label="告警时间" prop="Time"></el-table-column>
      </el-table>

@click="imgClick(scope)" 打包部署到服务器上 点击事件失效了

可以试一下@click改为@click.native,看有效果没

意思是本地运行能执行imgClick,部署上去就失效?