lvthrottledebounce
v1.0.0
Published
```javascript npm i lvthrottledebounce
Readme
安装
npm i lvthrottledebounce
import lvthrottledebounce from 'lvthrottledebounce'
Vue.use(lvthrottledebounce)Vue 防抖与节流指令示例
以下是一个简单的 Vue 示例,展示了如何使用 v-debounce 和 v-throttle 指令:
<template>
<input v-debounce="search" placeholder="输入搜索内容" />
<button v-throttle="submitForm, 1000">提交</button>
</template>
<script setup>
const search = () => console.log("执行搜索");
const submitForm = () => console.log("表单提交");
</script>
