91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

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

發布時間:2023-01-28 15:27:53 來源:億速云 閱讀:157 作者:iii 欄目:開發技術

這篇文章主要介紹了Vue3通過ref操作Dom元素及hooks的使用方法是什么的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Vue3通過ref操作Dom元素及hooks的使用方法是什么文章都會有所收獲,下面我們一起來看看吧。

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}
  }

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

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

 在父組件中的子組件里會打印一個proxy(實例),通過實例去獲取里面的屬性或者值

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

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

看這個例子:

父組件:

<template>
  <div class="about">
    <h2>This is an about page</h2>
    <com ref="commer"></com>
    <h4>通過ref用父組件接收子組件中的寬和高:<span>{{numWidht}} {{numHeight}}</span></h4>
 
  </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>
<h2>屏幕尺寸:</h2>
<h2>寬度:{{width}}</h2>
<h2>高度:{{height}}</h2>
</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)比較像。

父組件

    <h2>屏幕尺寸:</h2>
	<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的使用方法是什么”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“Vue3通過ref操作Dom元素及hooks的使用方法是什么”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

衡南县| 焉耆| 岳西县| 积石山| 正阳县| 托克托县| 舒城县| 于都县| 万安县| 舒兰市| 富阳市| 贵阳市| 全州县| 山阴县| 长泰县| 临洮县| 枞阳县| 巫山县| 肃宁县| 逊克县| 潮州市| 滦平县| 宝清县| 南康市| 九龙坡区| 盐津县| 广灵县| 肥城市| 雷州市| 定西市| 萍乡市| 阿勒泰市| 林西县| 故城县| 含山县| 双城市| 新巴尔虎右旗| 丰原市| 扶风县| 凤翔县| 铜鼓县|