2021-12-21 09:51:43 +08:00

15 lines
290 B
TypeScript

import { VantComponent } from '../../common/component';
import Notify from '../../notify/notify';
VantComponent({
methods: {
onChange(event) {
Notify({
context: this,
type: 'primary',
message: `切换至第${event.detail}`,
});
},
},
});