Ver Fonte

上传文件的组件

iZaiZaiA há 2 anos atrás
pai
commit
c7517f74f6
1 ficheiros alterados com 21 adições e 0 exclusões
  1. 21 0
      src/components/table-form/hc-form-upload.vue

+ 21 - 0
src/components/table-form/hc-form-upload.vue

@@ -0,0 +1,21 @@
+<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>