mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
23 lines
457 B
Vue
23 lines
457 B
Vue
<template>
|
|
<form v-if="params" @submit.prevent="searchEvent">
|
|
<vxe-input v-model="params.name" placeholder="请输入名称"></vxe-input>
|
|
<vxe-button @click="searchEvent">搜索</vxe-button>
|
|
</form>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'ToolbarInput',
|
|
props: {
|
|
params: Object,
|
|
context: Object
|
|
},
|
|
methods: {
|
|
searchEvent () {
|
|
const { $grid } = this.context
|
|
$grid.commitProxy('reload')
|
|
}
|
|
}
|
|
}
|
|
</script>
|