App.vue 558 Bytes
<template>
  <div id="app">
    <router-view />
  </div>
</template>

<style lang="less">
.flex {
  display: flex;
  align-items: center;
}
.borderBox {
  box-sizing: border-box;
}
.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.white_bg {
  background: #fff;
}
.burt-container {
  .pa(30, 36, 10, 39);
}
.none-label {
  text-align: right;
  .ant-form-item-label {
    opacity: 0;
  }
}
.ant-btn .icon-class {
  .mg-r(10);
}
.success.ant-btn-link {
  color: #4cd964;
}
.danger.ant-btn-link {
  color: #ff3b30;
}
</style>