This commit is contained in:
liuye
2022-01-05 17:56:20 +08:00
parent e2d3ac1666
commit 182a223918
10 changed files with 295 additions and 8 deletions

View File

@@ -21,7 +21,7 @@
<img src="./components/img/right-icon.png" alt="">
</div>
</div>
<div class="btn">新建分类</div>
<div class="btn" @click="toAddSet">新建分类</div>
</div>
</template>
@@ -37,7 +37,11 @@ export default {
data() {
return {}
},
methods: {},
methods: {
toAddSet() {
uni.navigateTo({url: './AddSet'})
}
},
}
</script>