1234567891011121314151617181920212223242526272829 |
- <script>
- export default {
- data() {
- return {
- count: 0
- }
- }
- }
- </script>
- <template>
- <div class="file">
- <h3>文件处理</h3>
- <input type="file" placeholder="选择文件"/><br/>
- <label>确认上传</label>
- </div>
- </template>
- <style scoped>
- .file{
- color:var(--font-color);
- width:80%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .file div{
- width: 90%;
- }
- </style>
|