Skip to content

Commit

Permalink
docs(category): update demo code
Browse files Browse the repository at this point in the history
  • Loading branch information
eiinu committed Feb 15, 2023
1 parent 2c9fdbe commit 5d4e061
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/packages/__VUE/category/doc.taro.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default {
});
const change = (index: any) => {
data.categoryChild = [].concat(data.categoryInfo.category[index].children as any);
data.categoryChild = [].concat(data.category.category[index].children as any);
};
const onChange =()=>{
console.log("当前分类数据");
Expand Down Expand Up @@ -94,7 +94,7 @@ export default {
});
const changeText = (index: any) => {
data.categoryChild = [].concat(data.categoryInfo.category[index].children as any);
data.categoryChild = [].concat(data.category.category[index].children as any);
};
const onChange =()=>{
Expand Down

0 comments on commit 5d4e061

Please sign in to comment.