Vue 支持双绑的搜索组件

组件代码:

<template>
  <div :class="{'hidden':hidden}">
    <el-input
      :placeholder="placeholder"
      v-model="new_search"
      size="small"
      clearable
      @input="to_input"
      @keyup.enter.native="to_search"
      @clear="to_search">
      <el-button slot="append" icon="el-icon-search" @click="to_search">{{ buttonName }}</el-button>
    </el-input>
  </div>
</template>

<script>
// 版本二的搜索组件--支持双绑
export default {
  name: 'Mysearch',
  props: {
    hidden: {
      type: Boolean,
      default: false
    },
    placeholder: {
      type: String,
      default: '请输入关键字(模糊搜索)'
    },
    buttonName: {
      type: String,
      default: '搜索'
    },
    value: {
      type: String,
      default: ''
    }
  },
  data() {
    return {
      new_search: this.value
    }
  },
  methods: {
    to_search() {
      this.$emit('searchData', this.new_search)
    },
    to_input() {
      this.$emit('input', this.new_search) // 实现双绑的关键
    }
  }
}
</script>

<style scoped>
</style>

调用处代码:

<template>
  <div class="app-container">
    <!-- 使用组件 -->
    <newsearch v-model="my_pagination.search" @searchData="to_search"/>
  </div>
</template>

<script>
// 导入组件
import Newsearch from './newSearch'

export default {
  name: 'DemoManage',
  components: { Newsearch }, // 注册组件
  data() {
    return {
      my_pagination: {
        page: 1,
        page_size: 10,
        search: '',
        search_type: ''
      }
    }
  },
  created: function() {
  },
  methods: {
    // 绑定组件里面的方法,并查看效果
    to_search() {
      console.log(this.my_pagination.search)
    }
  }
}
</script>

<style scoped>
</style>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

haeasringnar

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值