Composition API implements logic reuse steps:
For example, define a method to get the current mouse position The first one is to use the useMousePosition defined by ref directly: This way, both exports and imports can be destructured at will // useMousePosition.js import { ref, onMounted, onUnmounted } from 'vue' // 1. Define a function, extract logic, and name it useXXX function useMousePosition() { // Use ref to define const x = ref(0) const y = ref(0) function update(e) { console.log(x.value, y.value); x.value = e.pageX y.value = e.pageY } onMounted(() => { console.log('Start listening for mouse movement events'); window.addEventListener('mousemove', update) }) onUnmounted(() => { console.log('Remove mouse scroll event monitoring'); window.removeEventListener('mousemove', update) }) return { x, y } } // Export this function export default useMousePosition <!-- This method can be called in any component--> <template> <p>mouse position: {{x}}, {{y}}</p> </template> <script> import useMousePosition from './useMousePosition' export default { name: 'MousePosition', setup() { // useMousePosition uses ref to define variables, which can be deconstructed const { x, y } = useMousePosition() console.log(x, y) return { x, y } } } </script> The second method is to use reactive to define the mouse coordinate object. This export method cannot be destructured when imported into a component. import { onMounted, onUnmounted, reactive } from 'vue' export function useMousePosition2() { // Use reactive to define const mouse = reactive({ x: 0, y: 0 }) function update(e) { mouse.x = e.pageX mouse.y = e.pageY } onMounted(() => { console.log('Start listening for mouse movement events'); window.addEventListener('mousemove', update) }) onUnmounted(() => { console.log('Remove mouse scroll event monitoring'); window.removeEventListener('mousemove', update) }) return { mouse } } <template> <!-- Use object method to display information --> <p>mouse position2: {{mouse.x}}, {{mouse.y}}</p> </template> <script> import { useMousePosition2 } from './useMousePosition' export default { name: 'MousePosition', setup() { // useMousePosition2 is defined using reactive, so deconstruction is not possible const { mouse } = useMousePosition2() return { mouse } } } </script> The third method is to use toRefs Using this method, you can deconstruct reactive objects into ref objects. export function useMousePosition3() { // Use reactive to define const mouse = reactive({ x: 0, y: 0 }) function update(e) { mouse.x = e.pageX mouse.y = e.pageY } onMounted(() => { console.log('Start listening for mouse movement events'); window.addEventListener('mousemove', update) }) onUnmounted(() => { console.log('Remove mouse scroll event monitoring'); window.removeEventListener('mousemove', update) }) // Here, use toRefs to deconstruct into ref object return toRefs(mouse) } <template> <p>mouse position: {{x}}, {{y}}</p> </template> <script> import { useMousePosition3 } from './useMousePosition' export default { name: 'MousePosition', setup() { // Use reactive to define the mouse coordinate object, and then deconstruct it into a ref object through toRefs const { x, y } = useMousePosition() console.log(x, y) return { x, y } } } </script> All three methods can be implemented, but when we generally use them, we will return the ref object, so it is recommended to use the first and third methods and try not to use the second method. This is the end of this article about how to implement logic reuse with Vue3 composition API. For more information about Vue3 composition API logic reuse, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Problems encountered when installing mysql8.0.15 winx64 on Win10 and connecting to the server
>>: Tutorial analysis of quick installation of mysql5.7 based on centos7
This article shares the specific code of MySQL 8....
wangEditor is a web rich text editor developed ba...
The difference between relative and absolute in H...
background Recently, a leader wanted us to build ...
A very common scenario in react projects: const [...
1. Perform file name search which (search for ...
In the latest version of WIN10, Microsoft introdu...
This article example shares the specific code for...
Preview of revised version This article was writt...
Vulnerability Details VSFTP is a set of FTP serve...
Problem <br />In responsive layout, we shou...
Basics A transaction is an atomic operation on a ...
question The seamless scrolling of pictures and t...
Mysql is a mainstream open source relational data...
Nginx log description Through access logs, you ca...