13:3 error The template root requires exactly one element vue/no-multiple-template-root
时间: 2024-11-12 20:01:52 浏览: 6
在您的代码中,Vue 模板要求根元素必须且只能有一个,但当前模板中有多个根元素。您需要将这些元素包裹在一个单独的父元素中来解决这个错误。以下是修正后的代码:
```html
<template>
<a-card title="图片上传">
<a-upload
:action="apiUrl"
:multiple="true"
accept="image/*"
:data="formData"
:on-success="handleSuccess"
:on-error="handleError"
>
<a-button>点击上传</a-button>
</a-upload>
<a-table
:columns="columns"
:data-source="imageData"
style="margin-top: 20px"
/>
</a-card>
</template>
<script>
import { message } from 'ant-design-vue';
export default {
components: {},
data() {
return {
apiUrl: process.env.VUE_APP_API_URL + '/api/index.php',
formData: {
token: '0ace6f265f2dd2cb1f97ac412c4ddc3e'
},
columns: [
{ title: '图片地址', dataIndex: 'url' },
{ title: '文件名', dataIndex: 'srcName' },
{ title: '缩略图', dataIndex: 'thumb', scopedSlots: { customRender: 'thumb' } },
{ title: '删除链接', dataIndex: 'del', scopedSlots: { customRender: 'del' } }
],
imageData: []
};
},
methods: {
handleSuccess(response, file) {
console.log("handleSuccess called with:", response, file);
console.log(this.apiUrl);
if (response.result === 'success') {
this.imageData.push(response);
message.success(`文件 ${file.name} 上传成功`);
} else {
message.error(`文件 ${file.name} 上传失败:${response.message}`);
}
},
handleError(err, file) {
message.error(`文件 ${file.name} 上传失败:${err.message}`);
}
},
created() {
console.log(this.apiUrl);
}
};
</script>
```
通过将所有元素包裹在 `<a-card>` 中,根元素的数量变为一个,从而解决了 `vue/no-multiple-template-root` 错误。
阅读全文