zoukankan      html  css  js  c++  java
  • xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

    modal over table bug

    table can not clickable

    bad

    
    <el-row>
      <el-col :span="24">
        <POITable
          :loading="loading"
          :poiList="poiList"
          :poiTotal="poiTotal"
          @update-poi-list="updatePOIList"
        />
      </el-col>
       <!-- no col wrapper -->
        <AddModal
          :visible="addVisible"
          :poiTypes="poiTypeList"
          @save-modal="saveAddModal"
          @close-modal="closeAddModal"
        />
    </el-row>
    

    Ok

    
    <el-row>
      <el-col :span="24">
        <POITable
          :loading="loading"
          :poiList="poiList"
          :poiTotal="poiTotal"
          @update-poi-list="updatePOIList"
        />
      </el-col>
      <el-col :span="24">
        <AddModal
          :visible="addVisible"
          :poiTypes="poiTypeList"
          @save-modal="saveAddModal"
          @close-modal="closeAddModal"
        />
      </el-col>
    </el-row>
    

    also OK

    <el-row>
      <el-col :span="24">
        <POITable
          :loading="loading"
          :poiList="poiList"
          :poiTotal="poiTotal"
          @update-poi-list="updatePOIList"
        />
        <AddModal
          :visible="addVisible"
          :poiTypes="poiTypeList"
          @save-modal="saveAddModal"
          @close-modal="closeAddModal"
        />
      </el-col>
    </el-row>
    


  • 相关阅读:
    c语言中逆向显示数值
    c语言中无限循环语句
    css静态网页css代码
    css静态网页css代码
    考试html代码
    考试css代码
    考试html框架代码
    css静态网页代码
    5个CSS书写技巧
    5个CSS书写技巧
  • 原文地址:https://www.cnblogs.com/xgqfrms/p/12499094.html
Copyright © 2011-2022 走看看