123456789101112131415161718192021 |
- <template>
- <div class="hc-upload-table-form">上传文件的组件</div>
- </template>
- <script>
- export default {
- name: "HcTableFormUpload",
- };
- </script>
- <style lang="scss">
- .hc-upload-table-form {
- position: relative;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #1A1A1A;
- font-size: 16px;
- }
- </style>
|