list-item.js 232 B

12345678910111213
  1. import { VantComponent } from '../vant-ui/common/component'
  2. VantComponent({
  3. props: {
  4. item: Object
  5. },
  6. methods: {
  7. bindconfirm (e) {
  8. const { value } = e.detail
  9. this.triggerEvent('search', value)
  10. }
  11. }
  12. })