freight.vue 727 Bytes
<template>
  <router-view></router-view>
</template>
<script>
export default {
  data() {
    return {};
  },
};
</script>
<style lang="scss">
table.template-table {
  width: 100%;
  height: auto;
  thead {
    background: #000000;
    th {
      padding: 8px 0;
      border: 1px solid #cccccc;
      color: #ffffff;
      text-align: center;
    }
  }
  tbody {
    tr {
      height: 35px;
      td {
        border: 1px solid #cccccc;
        border-top: none;
        border-right: none;
        text-align: center;
        padding: 5px;
        span {
          margin-left: 10px;
          margin-right: 20px;
        }
      }
      td:last-child {
        border-right: 1px solid #cccccc;
      }
    }
  }
}
</style>