index.vue 399 B

12345678910111213141516171819
  1. <template>
  2. <el-button class="zap-apply-button" size="mini" v-bind="$attrs" v-on="$listeners">申请开票</el-button>
  3. </template>
  4. <script>
  5. export default {
  6. inheritAttrs: false
  7. }
  8. </script>
  9. <style lang="scss">
  10. .el-table .fixed-width .zap-apply-button.el-button--mini{
  11. padding: 5px 10px;
  12. font-size: 12px;
  13. color: #ffffff;
  14. background: #00B53A;
  15. border-radius: 4px;
  16. }
  17. </style>