vue3 implements browser ctrl+f function

vue3 implements browser ctrl+f function

Install

npm install search-bar-vue3 --save

Plug-in GitHub address

WenyaoL/search-bar-vue3: Recurrence of browser ctrl+F function (github.com)

Use

Global registration

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

partial registration

<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>

Property configuration

prop description type default
root Selector for element(will be put into docment.querySelector(root)) string Must provide
hidden A bidirectional binding attribute to control the display and disappearance of the search bar(Please use v-model:hidden in Vue3 version) boolean true
highlightClass The className assigned by the highlighted block string “__highLight”
selectedClass The className assigned by the selected block string “selected-highlight”

Plug-in search-bar-vue2 (vue2 version)

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

Guess you like

Origin blog.csdn.net/qq_43203949/article/details/128290672