File.vue 412 B

1234567891011121314151617181920212223242526272829
  1. <script>
  2. export default {
  3. data() {
  4. return {
  5. count: 0
  6. }
  7. }
  8. }
  9. </script>
  10. <template>
  11. <div class="file">
  12. <h3>文件处理</h3>
  13. <input type="file" placeholder="选择文件"/><br/>
  14. <label>确认上传</label>
  15. </div>
  16. </template>
  17. <style scoped>
  18. .file{
  19. color:var(--font-color);
  20. width:80%;
  21. display: flex;
  22. justify-content: center;
  23. align-items: center;
  24. }
  25. .file div{
  26. width: 90%;
  27. }
  28. </style>