hc-form-upload.vue 360 B

123456789101112131415161718192021
  1. <template>
  2. <div class="hc-upload-table-form">上传文件的组件</div>
  3. </template>
  4. <script>
  5. export default {
  6. name: "HcTableFormUpload",
  7. };
  8. </script>
  9. <style lang="scss">
  10. .hc-upload-table-form {
  11. position: relative;
  12. height: 100%;
  13. display: flex;
  14. align-items: center;
  15. justify-content: center;
  16. color: #1A1A1A;
  17. font-size: 16px;
  18. }
  19. </style>