使用cell做下拉列表时,循环数组输出,不能即时同步页面
Open
component/cell
- Dominant language
- Vue
- Stars
- 17.5k
- Forks
- 3.6k
- PR merge metrics
- No merged PRs in 30d
Description
``` html
{{province.show}}
{{projectDto.xmjc}}
import { Group, XTextarea, XButton, Checklist, Cell, CellBox } from "vux";
import http from "@/service/http/index";
export default {
components: {
Group,
XTextarea,
XButton,
Checklist,
Cell,
CellBox
},
data() {
return {
provinces: [
{
name: null,
projectDtos: [
{ xmId: "1", xmjc: "项目1" },
{ xmId: "2", xmjc: "项目2" }
]
}
]
};
},
methods: {
},
created() {
}
};
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.