首頁 > 軟體

Vue3通過ref操作Dom元素及hooks的使用方法

2023-01-26 18:01:01

Vue3 ref獲取DOM元素

<div ref="divBox">Hello</div>
import {ref,onMounted} from 'vue'
  setup() {
    const divBox = ref(null);
     onMounted(()=>{
        console.log(divBox.value);
     })
    return{divBox}
  }

父元件監聽子元件中的元素

 在父元件中的子元件裡會列印一個proxy(範例),通過範例去獲取裡面的屬性或者值

setup() {
      const commer = ref(null)
      onMounted(()=>{
          console.log(commer);
          console.log(commer.value);
      })
      return {
          commer
      }
  }

看這個例子:

父元件:

<template>
  <div class="about">
    <h1>This is an about page</h1>
    <com ref="commer"></com>
    <h3>通過ref用父元件接收子元件中的寬和高:<span>{{numWidht}} {{numHeight}}</span></h3>
 
  </div>
</template>
<script>
import com from '../components/com.vue'
import {ref,onMounted} from 'vue'
export default {
  components: {
    com
  },
  setup() {
      const commer = ref(null)
      const numWidht = ref(0);
      const numHeight = ref(0)
      onMounted(()=>{
          numWidht.value =commer.value.width
          numHeight.value =commer.value.height
      })
      return {
          commer,numWidht,numHeight
      }
  }
}
</script>

子元件:

<template>
<h1>螢幕尺寸:</h1>
<h1>寬度:{{width}}</h1>
<h1>高度:{{height}}</h1>
</template>
 
<script>
// import { ref,onMounted } from 'vue';
import useWindwoResize from '../hooks/useWindowResize'
export default {
    
    setup(){
        const {width, height} = useWindwoResize()
        return{width,height}
    }
};
</script>
 
<style lang="scss" scoped>
 
</style>

 hooks頁面:

import {onMounted, onUnmounted, ref} from 'vue';
function useWindowResize(){
    const width = ref(0)
    const height = ref(0)
    function onResize(){
        width.value = window.innerWidth
        height.value = window.innerHeight
    }
    onMounted(()=>{
        window.addEventListener("resize",onResize);
        onResize();
    })
    onUnmounted(()=>{
        window.removeEventListener('resize',onResize);
    })
    return{
        width,
        height
    }
}
export default useWindowResize;

Vue3 hooks

在vue3中的hooks其實就是函數的寫法,就是將檔案的一些單獨功能的js程式碼進行抽離出來,放到單獨的js檔案中。這樣其實和我們在vue2中學的混入(mixin)比較像。

父元件

    <h1>螢幕尺寸:</h1>
	<div>寬度:{{ width }}</div>
	<div>高度:{{ height }}</div>

引入hooks中的js檔案

import useWindwoResize from '../hooks/useWindowResize';
setup(){
    const {width, height} = useWindwoResize()
     return{width,height}
}

新建hooks資料夾在裡面新建useWindowResize.js檔案,內容如下:

import {onMounted, onUnmounted, ref} from 'vue';
function useWindowResize(){
    const width = ref(0)
    const height = ref(0)
    function onResize(){
        width.value = window.innerWidth
        height.value = window.innerHeight
    }
    onMounted(()=>{
        window.addEventListener("resize",onResize);
        onResize();
    })
    onUnmounted(()=>{
        window.removeEventListener('resize',onResize);
    })
    return{
        width,
        height
    }
}
export default useWindowResize;

到此這篇關於Vue3通過ref操作Dom元素及hooks的使用方法的文章就介紹到這了,更多相關Vue3通過ref操作Dom元素及hooks的使用方法內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com