短信预约-IT技能 免费直播动态提醒
我常用的几个 VueUse 组合,推荐给你们! onClickOutside useFocusTrap useHead useStorage useVModel useImage useDark 1. onClickOutside
检测点击非常简单。但是,当点击发生在一个元素之外时,如何检测?那就有点棘手了。但使用VueUse中的 onClickOutside 组件就很容易能做到这点。代码如下:
< script setup> import { ref } from 'vue' import { onClickOutside } from '@vueuse/core' const container = ref( null ) onClickOutside( container, ( ) => alert( 'Good. Better to click outside.' ) ) script> < template> < div> < p> Hey there, here's some text. Please don'
t click
in here.
p
> div
> div
> template
>
为想要追踪的 container 元素创建一个 ref :
const container = ref( null ) ;
然后我们用元素上的ref属性把它变成一个模板ref。
< div class= "container" ref= "container" > < p> Please don't click in here.
有了容器的ref 之后,我们把它和一个处理程序一起传递给onClickOutside组合。
onClickOutside( container, ( ) => alert( 'Good. Better to click outside.' ) )
这种可组合对于管理窗口或下拉菜单很有用。当用户点击下拉菜单以外的地方时,你可以关闭它。
模态框也通常表现出这种行为。
事例地址:https://stackblitz.com/edit/vue3-script-setup-with-vite-18scsl?file=src%2FApp.vue
2.useFocusTrap
为了拥有可访问的应用程序,正确地管理焦点非常重要。
没有什么比不小心在模态后面加tab,并且无法将焦点返回到模态更糟糕的了。这就是焦点陷阱的作用。
将键盘焦点锁定在一个特定的DOM元素上,不是在整个页面中循环,而是在浏览器本身中循环,键盘焦点只在该DOM元素中循环。
下面是一个使用VueUse的useFocusTrap的例子:
< script setup> import { ref } from 'vue' import { useFocusTrap } from '@vueuse/integrations/useFocusTrap' const container = ref( null ) useFocusTrap( container, { immediate: true } ) script> < template> < div> < button tab- index= "-1" > Can't click me Inside the trap Can' t break out button> < button tab- index= "-1" > Stuck here forever button> div> < button tab- index= "-1" > Can't click me
将immediate设置为true,页面加载时,焦点将被放置在 container 元素中。然后,就不可能在该容器之外的地方做标签。
到达第三个按钮后,再次点击tab键将回到第一个按钮。
就像onClickOutside一样,我们首先为 container 设置了模板ref。
const container = ref( null )
< div class= "container" ref= "container" > < button tab- index= "-1" > Inside the trap button> < button tab- index= "-1" > Can't break out Stuck here forever
然后我们把这个模板引用传递给useFocusTrap组合。
useFocusTrap( container, { immediate: true } ) ;
immediate 选项将自动把焦点设置到容器内第一个可关注的元素上。
事例地址:https://stackblitz.com/edit/vue3-script-setup-with-vite-eocc6w?file=src%2FApp.vue
3. useHead
VueUse为我们提供了一种简单的方法来更新我们应用程序的 head 部分--页面 title、scripts和其他可能放在这里的的东西。
useHead 组合要求我们首先设置一个插件
import { createApp } from 'vue' import { createHead } from '@vueuse/head' import App from './App.vue' const app = createApp( App) const head = createHead( ) app.use ( head) app.mount ( '#app' )
一旦我们使用了这个插件,我们就可以随心所欲地更新部分。在这个例子中,我们将在一个按钮上注入一些自定义样式。
< script setup> import { ref } from 'vue' import { useHead } from '@vueuse/head' const styles = ref( '' ) useHead( { // Inject a style tag into the head style: [ { children: styles } ] , } ) const injectStyles = ( ) => { styles.value = 'button { background: red }' } script> < template> < div> < button @click= "injectStyles" > Inject new styles button> div> template>
首先,我们创建一个ref来表示我们要注入的样式,默认为空:
第二,设置 useHead 将样式注入到页面中。
useHead( { // Inject a style tag into the head style: [ { children: styles } ] , } )
然后,添加注入这些样式的方法:
const injectStyles = ( ) => { styles.value = 'button { background: red }' }
当然,我们并不局限于注入样式。我们可以在我们的
中添加任何这些内容:
title meta tags link tags base tag style tags script tags html attributes body attributes 事例地址:https://stackblitz.com/edit/vue3-script-setup-with-vite-szhedp?file=src%2FApp.vue
4. useStorage useStorage真的很酷,因为它会自动将 ref 同步到 localstorage,事例如下:
< script setup> import { useStorage } from '@vueuse/core' const input = useStorage( 'unique-key' , 'Hello, world!' ) script> < template> < div> < input v- model= "input" /> div> template>
第一次加载时, input 显示 'Hello, world!',但最后,它会显示你最后在 input 中输入的内容,因为它被保存在localstorage中。
除了 localstorage,我们也可以指定 sessionstorage:
const input = useStorage( 'unique-key' , 'Hello, world!' , sessionStorage)
当然,也可以自己实现存储系统,只要它实现了StorageLike接口。
export interface StorageLike { getItem( key: string) : string | null setItem( key: string, value: string) : void removeItem( key: string) : void}
5. useVModel v-model指令是很好的语法糖,使双向数据绑定更容易。
但useVModel更进一步,摆脱了一堆没有人真正想写的模板代码。
< script setup> import { useVModel } from '@vueuse/core' const props = defineProps( { count : Number, } ) const emit = defineEmits( [ 'update:count' ] ) const count = useVModel( props, 'count' , emit) script> < template> < div> < button @click= "count = count - 1" >- button> < button @click= "count = 0" > Reset to 0 button> < button @click= "count = count + 1" >+ button> div> template>
在这个例子中,我们首先定义了要附加到v-model上的 props:
const props = defineProps( { count : Number, } )
然后我们发出一个事件,使用v-model的命名惯例update::
const emit = defineEmits( [ 'update:count' ] )
现在,我们可以使用useVModel组合来将 prop和事件绑定到一个ref。
const count = useVModel( props, 'count' , emit)
每当 prop 发生变化时,这个 count 就会改变。但只要它从这个组件中被改变,它就会发出update:count事件,通过v-model指令触发更新。
我们可以像这样使用这个 Input 组件。
< script setup> import { ref } from 'vue' import Input from './components/Input.vue' const count = ref( 50 ) script> < template> < div> < Input v- model: count = "count" /> { { count } } div> template>
这里的count ref是通过v-model绑定与 Input组件内部的count ref同步的。
事例地址:https://stackblitz.com/edit/vue3-script-setup-with-vite-ut5ap8?file=src%2FApp.vue
6. useImage
随着时间的推移,web应用中的图像变得越来越漂亮。我们已经有了带有srcset的响应式图像,渐进式加载库,以及只有在图像滚动到视口时才会加载的库。
但你知道吗,我们也可以访问图像本身的加载和错误状态?
我以前主要通过监听每个HTML元素发出的onload和onerror事件来做到这一点,但VueUse给我们提供了一个更简单的方法,那就是useImage组合。
< script setup> import { useImage } from '@vueuse/core' // Change this to a non- existent URL to see the error state const url = 'https://source.unsplash.com/random/400x300' const { isLoading, error } = useImage( { src: url, } , { // Just to show the loading effect more clearly delay: 2000 , } ) script> < template> < div> < div v- if= "isLoading" class= "loading gradient" > div> < div v- else- if= "error" > Couldn't load the image :(
事例:https://stackblitz.com/edit/vue3-script-setup-with-vite-d1jsec?file=src%2FApp.vue
VueUse的useDark组合性为我们把所有这些东西都包起来。默认情况下,它查看系统设置,但任何变化都会被持久化到localStorage,所以设置会被记住。
Vueuse 拥有一个巨大的库,其中包含出色的组合,而我们在这里只涵盖了其中的一小部分。我强烈建议你花些时间去探索这些文档,看看所有可用的东西。这是一个非常好的资源,它将使你免于大量的模板代码和不断地重新发明车轮。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341