| 1234567891011121314151617181920212223 |
- <template>
- <el-upload
- class="upload-demo"
- action="/api/kd-resource/oss/endpoint/put-file-attach"
- :on-change="handleChange"
- :file-list="fileList">
- <el-button size="small" type="primary">点击上传</el-button>
- </el-upload>
- </template>
- <script>
- export default{
- data(){
- return {
- fileList: []
- }
- },
- methods: {
- handleChange(){
-
- }
- }
- }
- </script>
|