mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +08:00
20 lines
362 B
TypeScript
20 lines
362 B
TypeScript
import { VantComponent } from '../../common/component';
|
|
import icons from '@vant/icons/src/config';
|
|
|
|
VantComponent({
|
|
data: {
|
|
icons,
|
|
active: 0,
|
|
demoIcon: 'chat-o',
|
|
demoImage: 'https://b.yzcdn.cn/vant/icon-demo-1126.png',
|
|
},
|
|
|
|
methods: {
|
|
onSwitch(event) {
|
|
this.setData({
|
|
active: event.detail.index,
|
|
});
|
|
},
|
|
},
|
|
});
|