vue3【提效】使用 VueUse 高效开发(工具库 @vueuse/core + 新增的组件库 @vueuse/components)

Vueuse 是一个功能强大的 Vue.js 生态系统工具库,提供了可重用的组件和函数,帮助开发者更轻松地构建复杂的应用程序。

官网 :https://vueuse.org/core/useWindowScroll/

安装 VueUse

npm i @vueuse/core @vueuse/components

(可选)安装自动导入,添加到 imports 中

      // 需自动导入方法的库imports: ['vue','pinia','@vueuse/core','@vueuse/components']

工具库

获取鼠标坐标 useMouse()

在这里插入图片描述

<script setup lang="ts">
const { x, y } = useMouse()
</script><template><div><p>x:{{ x }}</p><p>y:{{ y }}</p></div>
</template>

监听鼠标按下 useMousePressed()

<script setup>
const { pressed } = useMousePressed()
</script><template><p>{{ pressed }}</p>
</template>

获取鼠标选择的文字 useTextSelection()

在这里插入图片描述

<script setup>
const state = useTextSelection()
</script><template><p>一段供鼠标选择的文字</p><p>被鼠标选择的文字是:{{ state.text }}</p>
</template>

窗口滚动条 useWindowScroll()

// 获取滚动条坐标
const { x, y } = useWindowScroll({ behavior: 'smooth' })
<!-- 滚动滚动条 -->
<button @click="x += 200">向右滚动 200 px</button>
<button @click="y += 200">向下滚动 200 px</button><!-- 滚动滚动条到指定位置 -->
<button @click="y = 600">向下滚动到 600 px</button>

元素滚动条 useScroll()

const el = ref<HTMLElement | null>(null)
const { x, y, isScrolling, arrivedState, directions } = useScroll(el)
<div ref="el" />

获取窗口大小 useWindowSize()

const { width, height } = useWindowSize()

添加事件监听 useEventListener

<script setup lang="ts">
let num = ref(0)
// 监听鼠标移动
useEventListener('mousemove', () => {num.value++
})
</script><template><div class="p-20"><p>num:{{ num }}</p></div>
</template>
  • 组件卸载时,监听事件会自动被移除

复制到剪贴板 useClipboard()

<script setup lang="ts">
const { copy, copied, isSupported, text } = useClipboard()let msg = '你好'async function doCopy() {copy(msg)if (copied) {alert('已复制到剪贴板!')}
}
</script><template><div class="p-20"><p>{{ msg }}</p><p v-if="text">已复制到剪贴板的内容:{{ text }}</p><button v-if="isSupported" @click="doCopy">复制</button></div>
</template>
  • copy 复制的方法
  • copied 是否完成复制
  • isSupported 浏览器是否支持复制到剪贴板
  • text 复制到剪贴板的内容

选择本地文件 useFileDialog()

<script setup lang="ts">
const { files, open, reset, onChange } = useFileDialog()
onChange((files) => {console.log(files)
})
</script><template><button type="button" @click="open()">选择文件</button><button type="button" :disabled="!files" @click="reset()">清空选择</button><template v-if="files"><p>已选择 <b>{{ `${files.length}` }}</b> 个文件</p><li v-for="file of files" :key="file.name">{{ file.name }}</li></template>
</template>

切换全屏模式 useFullscreen()

<script setup lang="ts">
const { isFullscreen, enter, exit, toggle } = useFullscreen()
</script><template><button v-if="isFullscreen" @click="exit">退出全屏</button><button v-else @click="enter">全屏</button><button @click="toggle">切换全屏模式</button>
</template>

图片加载 useImage

<script setup>
const avatarUrl = 'https://place.dog/300/200'
const { isLoading, error } = useImage({ src: avatarUrl })
</script><template><span v-if="isLoading">图片加载中...</span><span v-else-if="error">图片加载失败</span><img v-else :src="avatarUrl" />
</template>

获取联网信息 useNetwork()

const { isOnline, offlineAt, downlink, downlinkMax, effectiveType, saveData, type } = useNetwork()

判断是否联网 useOnline()

const online = useOnline()

给元素添加动画 useOnline()

在这里插入图片描述

<script setup>
const el = ref()
const {isSupported,animate,// actionsplay,pause,reverse,finish,cancel,// statespending,playState,replaceState,startTime,currentTime,timeline,playbackRate
} = useAnimate(el, { transform: 'rotate(360deg)' }, 1000)
</script><template><div class="p-40"><span ref="el" style="display: inline-block">旋转360度</span></div>
</template>

可控的计时器 useIntervalFn()

<script setup>
let num = ref(0)
const { pause, resume, isActive } = useIntervalFn(() => {num.value++
}, 1000)
</script><template><div class="p-40"><div>{{ num }}</div><button v-if="isActive" @click="pause">暂停计时器</button><button v-else @click="resume">恢复计时器</button></div>
</template>

暂停代码执行 promiseTimeout

import { promiseTimeout } from '@vueuse/core'
async function print() {// 开启 console 的默认计时器console.time()// 打印当前 console默认计时器 的时间console.timeLog()// 等待1s后执行await promiseTimeout(1000)// 打印当前 console默认计时器 的时间console.timeLog()
}
print()

获取网页标题 useTitle()

const title = useTitle()
console.log(title.value) // 打印当前网页的标题

更多工具可参考官网,持续更新中!

组件库

图片加载 UseImage

<script setup lang="ts">
import { UseImage } from '@vueuse/components'
</script><template><UseImage src="https://place.dog/300/200"><!-- 建议优化为图片加载动画 --><template #loading> 图片加载中.. </template><template #error> 图片加载失败 </template></UseImage>
</template>

一键复制到剪贴板 UseClipboard

<script setup lang="ts">
import { UseClipboard } from '@vueuse/components'
</script><template><UseClipboard v-slot="{ copy, copied }" source="复制的内容"><button @click="copy()"><!-- 建议优化为复制相关的图标 -->{{ copied ? '复制成功' : '复制' }}</button></UseClipboard>
</template>

获取联网状态 UseNetwork / UseOnline

<script setup>
import { UseNetwork } from '@vueuse/components'
</script><template><UseNetwork v-slot="{ isOnline }"> 是否联网: {{ isOnline }} </UseNetwork>
</template>

另一个也类似

<script setup>
import { UseOnline } from '@vueuse/components'
</script><template><UseOnline v-slot="{ isOnline }"> 是否联网: {{ isOnline }} </UseOnline>
</template>

更多组件可参考官网,持续更新中!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/41173.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

llm学习-4(llm和langchain)

langchain说明文档&#xff1a;langchain 0.2.6 — &#x1f99c;&#x1f517; langChain 0.2.6https://api.python.langchain.com/en/latest/langchain_api_reference.html#module-langchain.chat_models 1&#xff1a;模型 &#xff08;1&#xff09;自定义模型导入&#x…

跟《经济学人》学英文:2024年07月06日这期 Amazon turns 30

As Amazon turns 30, three factors will define its next decade It will have to deal with trustbusters, catch up on AI and revive its core business 它将不得不应对反垄断者&#xff0c;追赶人工智能并重振其核心业务 trustbuster&#xff1a; 美 [ˈtrəs(t)ˌbəs…

你真的会ELISA加样吗?

在ELISA实验中&#xff0c;研究人员需要进行多次加样步骤完成实验操作。对于常规双抗体夹心法ELISA&#xff0c;一般有如下加样步聚&#xff0c;即加样本、加检测抗体、加酶结合物、加底物&#xff08;最后加终止液停止反应&#xff09;。 加样步骤基础知识 加样步骤中一般使用…

云仓酒庄北京公司2024年:深耕酒业生态,以专业筑基

云仓酒庄北京公司&#xff1a;深耕酒业生态&#xff0c;以专业筑基&#xff0c;共绘酒业新蓝图 在竞争日益激烈的酒类市场中&#xff0c;云仓酒庄北京公司以其稳健的步伐、专业底蕴以及对品质的不懈追求&#xff0c;正逐步成为行业内一股不可忽视的力量。这家公司不仅仅是一个…

把Windows打造成一个NTP网络时间服务器,为网关提供校时服务

把Windows打造成一个NTP网络时间服务器&#xff0c;为网关提供校时服务。主要目的是为了解决&#xff1a;当网关不能上外网的时候&#xff0c;可以使用局域网的电脑来当做NTP服务器&#xff0c;实现校时功能。 跟着小编来看&#xff0c;如何使用NTP网络时间服务器来同步时间。 …

ubuntu关于docker部署 项目一站式教程

**假设已有ubuntu服务器并且登录root账号 ** **FinalShell中复制快捷键是 ****Ctrl+Shift+V** 卸载老版本docker sudo apt-get remove docker docker-engine docker.io containerd runc安装docker步骤 更新软件包sudo apt update sudo apt upgrade安装docker依赖sudo apt-get …

分享 10个简单实用的 JS 代码技巧

代码图片生成工具&#xff1a;有码高清 一、滚动到页面顶部 我们可以使用 window.scrollTo() 平滑滚动到页面顶部。 源码&#xff1a; const scrollToTop () > {window.scrollTo({ top: 0, left: 0, behavior: "smooth" }); };二、滚动到页面底部 当然&…

探索大型语言模型自动评估 LLM 输出长句准确性的方法

LLM现在能够自动评估较长文本中的事实真实性 源码地址&#xff1a;https://github.com/google-deepmind/long-form-factuality 论文地址&#xff1a;https://arxiv.org/pdf/2403.18802.pdf 这篇论文是关于谷歌DeepMind的&#xff0c;提出了新的数据集、评估方法和衡量标准&am…

vue2+element-ui新增编辑表格+删除行

实现效果&#xff1a; 代码实现 &#xff1a; <el-table :data"dataForm.updateData"border:header-cell-style"{text-align:center}":cell-style"{text-align:center}"><el-table-column label"选项字段"align"center&…

Linux 内核 GPIO 用户空间接口

文章目录 Linux 内核 GPIO 接口旧版本方式&#xff1a;sysfs 接口新版本方式&#xff1a;chardev 接口 gpiod 库及其命令行gpiod 库的命令行gpiod 库函数的应用 GPIO&#xff08;General Purpose Input/Output&#xff0c;通用输入/输出接口&#xff09;&#xff0c;是微控制器…

哪里还可以申请免费一年期的SSL证书?

目前&#xff0c;要申请免费一年期的SSL证书&#xff0c;选项较为有限&#xff0c;因为多数供应商已转向提供短期的免费证书&#xff0c;通常有效期为90天。不过&#xff0c;有一个例外是JoySSL&#xff0c;它仍然提供一年期的免费SSL证书&#xff0c;但是只针对教育版和政务版…

html三级菜单

示例 <!DOCTYPE html> <html lang"en"> <head> <meta charset"UTF-8"> <meta name"viewport" content"widthdevice-width, initial-scale1.0"> <title>Menu Example</title> <link re…

LED显示屏跟COB显示屏有哪些不同?

COB显示屏跟LED显示屏的主要区别在于产品的显示效果、封装技术、耐用性、防护力、维护以及制造成本方面的不同&#xff0c;这里所说的LED显示屏主要指的是使用SMD封装的LED显示屏&#xff0c;今天跟随COB显示屏厂家中品瑞科技一起来详细看看具体分析&#xff1a; 一、封装技术 …

品牌推广的深层逻辑:自我提升与市场认同的和谐共生

品牌推广的深层逻辑&#xff1a;自我提升与市场认同的和谐共生 著名飞行员查尔斯林德伯格(Charles Lindbergh) 曾写道:“改善生活方式比传播生活方式更重要。如果我们自己的生活方式使别人感到满意&#xff0c;那么它将自动蔓延。如果不是这样&#xff0c;那么任何武力都不可能…

如何在 Odoo 16 中继承和更新现有邮件模板

在本文中,让我们看看如何在 Odoo 16 中继承和编辑现有邮件模板。我们必须这样做才能对现有模板的内容进行任何调整或更新。让我们考虑一个在会计模块中更新邮件模板的示例。 单击“account.move”模型中的“发送并打印”按钮后,将打开上述向导。在这里,我们将进行更改。从…

8人团队历时半年打造开源版GPT-4o,零延迟演示引爆全网!人人可免费使用!

目录 01 Moshi 02 背后技术揭秘 GPT-4o可能要等到今年秋季才会公开。 然而&#xff0c;由法国8人团队开发的原生多模态Moshi&#xff0c;已经达到了接近GPT-4o的水平&#xff0c;现场演示几乎没有延迟&#xff0c;吸引了大量AI专家的关注。 令人惊讶的是&#xff0c;开源版的…

Python酷库之旅-第三方库Pandas(003)

目录 一、用法精讲 4、pandas.read_csv函数 4-1、语法 4-2、参数 4-3、功能 4-4、返回值 4-5、说明 4-6、用法 4-6-1、创建csv文件 4-6-2、代码示例 4-6-3、结果输出 二、推荐阅读 1、Python筑基之旅 2、Python函数之旅 3、Python算法之旅 4、Python魔法之旅 …

T100-XG查询报表的开发

制作XG报表 1、注册程序 azzi900 首先现将程序注册一下,在内部构建基础代码档。 2、注册作业 azzi910 也是直接新增一个,作业跟程序绑定一下。 3、T100签出规格程序 这个时候应该是没签出的,首先将规格迁出。 4、T100画面产生器 规格迁出之后,这个时候还需要生成一个画…

springcloud-gateway 网关组件中文文档

Spring Cloud网关 Greenwich SR5 该项目提供了一个基于Spring生态系统的API网关&#xff0c;其中包括&#xff1a;Spring 5&#xff0c;Spring Boot 2和项目Reactor。Spring Cloud网关的目的是提供一种简单而有效的方法来路由到API&#xff0c;并向它们提供跨领域的关注&#x…

配置基于不同IP地址的虚拟主机

定义配置文件vhost.conf <directory /www> allowoverride none require all granted </directory> <virtualhost 192.168.209.136:80> documentroot /www servername 192.168.209.136 </virtualhost><virtualhost 192.168.209.138:80> document…