1.0.4 • Published 2 years ago

bbg-vue-search v1.0.4

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

usage

Installation

npm install mk-vue-search  

Options

{
	autoFocus:true,
	searchInput:'', // input's value
  isShow:false, //whether show search for the first time.
	showAlways:false, //show always.
  url:'', //search url,
  emptyMsg: '', // message for empty data.
  title: '', // placeholder value
  delay: 500, //delay time
  ajaxData: {}, //ajax param
  showClose: false, //show or hide 'close' button
	appendToElement:'', // Where the module is inserted
  listConfig:{
    name:'text' // map 'name' to 'text'
  },
}  

Demo

html

<mk-search ref="search" @select="onSelect" :options="{url:'https://www.google.cn'}">
      <ul slot="list">
        <li>11</li>
      </ul>
</mk-search>  

js

import Search from 'mk-vue-search' 
Vue.use(Search) 

Interface data

url

@param key //search word
@return 
{
	list:
		[{
			"text": "东文",
			...param
		}]  
}

Events

Event NameDescriptionParameters
selecttrigger select{list:{...param, "text": "东文"}, searchInput:'search word'}
showtrigger show{searchInput:'search word'}
closetrigger close{searchInput:'search word'}
entertrigger enter{searchInput:'search word'}

Methods

MethodDescriptionParameters
showshow search''
searchDatainvoke search interface{key:'search word'}
setFocusset input focus''

Slot

NameDescription
listshow default content when search's input is empty.

Contributor

licuiting