index.vue 432 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="common-box">
  3. <dic-ele></dic-ele>
  4. </div>
  5. </template>
  6. <script>
  7. import dicEle from "@/views/components/dicEle";
  8. export default {
  9. components: { dicEle },
  10. data() {
  11. return {};
  12. },
  13. created() {},
  14. methods: {}
  15. };
  16. </script>
  17. <style tyle="scss" scoped>
  18. ::v-deep .el-table th.el-table__cell.is-leaf,
  19. ::v-deep .el-table td.el-table__cell {
  20. border-bottom: 1px solid #ebeef5 !important;
  21. }
  22. </style>