fix: 修复控制台警告:[el-radio] [API]

This commit is contained in:
于超
2025-02-24 17:15:05 +08:00
parent b1d3003099
commit a6654ba17b
2 changed files with 12 additions and 2 deletions

10
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,10 @@
{
"configurations": [
{
"type": "msedge",
"name": " http://localhost:3000/",
"request": "launch",
"url": " http://localhost:3000/"
}
]
}

View File

@@ -116,8 +116,8 @@
<el-form-item label="状态" prop="status">
<el-radio-group v-model="formData.status">
<el-radio :label="1">正常</el-radio>
<el-radio :label="0">停用</el-radio>
<el-radio :value="1">正常</el-radio>
<el-radio :value="0">停用</el-radio>
</el-radio-group>
</el-form-item>