TIP
1.0.6+
配置type为search,appendClick为点击搜索的回调方法
type
search
appendClick
<avue-form :option="option" v-model="form" > </avue-form> <script> export default{ data() { return { form:{}, option: { labelWidth: 120, column: [ { label: '搜索内容', prop: 'search', type: 'search', appendClick:()=>{ this.$message.success('搜索回调'+this.form.search); } } ] } } } } </script>
← 颜色选择器 评价 →