0.2.1 • Published 1 year ago

search-bar-vue3 v0.2.1

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

search-bar-vue3

Vue2 versionWenyaoL/search-bar-vue2: Recurrence of browser ctrl+F function (github.com)

Install

npm install search-bar-vue3 --save

Use

Global component

import SearchBar from 'search-bar-vue3'
Vue.use(SearchBar)

Local component

<template>
  <div>
    <search-bar 
    :root="'#document'" 
    :highlightClass="'myHighLight'" 
    :selectedClass="'selected-highlight'" 
    v-model:hidden="showSearchBar"/>
    <button @click="searchClick()">搜索按钮</button>
    <div id="document">
      <document/>
    </div>
  </div>
</template>

<script lang="ts">
import { defineComponent } from 'vue';
import Document from './Document.vue'
import {SearchBar} from 'search-bar-vue3'

export default defineComponent({
  name: 'App',
  components: {
    Document,
    SearchBar
  },
  data(){
    return{
      showSearchBar:false
    }
  },
  methods:{
    searchClick(){
      
      this.showSearchBar = !this.showSearchBar
      console.log("切换showSearchBar",this.showSearchBar);
    }
  }
});
</script>

<style>
.myHighLight{
  background-color: yellow;
}
.selected-highlight{
  background-color: yellowgreen;
}
</style>

props options

propdescriptiontypedefault
rootSelector for element(will be put into docment.querySelector(root))stringMust provide
hiddenA bidirectional binding attribute to control the display and disappearance of the search bar(Please use v-model:hidden in Vue3 version)booleantrue
highlightClassThe className assigned by the highlighted blockstring"__highLight"
selectedClassThe className assigned by the selected blockstring"selected-highlight"

Show

searchBar

License

MIT license