This commit is contained in:
quantulr
2023-08-30 17:27:21 +08:00
commit 0288146b0d
85 changed files with 26508 additions and 0 deletions

View File

@ -0,0 +1,28 @@
// custom-tab-bar/index.ts
import tabMenu from "./data";
Component({
/**
* 组件的属性列表
*/
properties: {},
/**
* 组件的初始数据
*/
data: {
active: 0,
list: tabMenu,
},
/**
* 组件的方法列表
*/
methods: {
onChange(e: any) {
console.log(e);
},
},
lifetimes: {
attached() {},
},
});