亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

vue3中的getCurrentInstance如何使用

發布時間:2023-05-16 16:41:35 來源:億速云 閱讀:171 作者:zzz 欄目:編程語言

這篇“vue3中的getCurrentInstance如何使用”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“vue3中的getCurrentInstance如何使用”文章吧。

父組件中:

1.setup語法糖中導入子組件

2.在子組件標簽上綁定ref值

3.setup內部從vue中按需導出 getCurrentInstance 方法

4.調用getCurrentInstance方法導出proxy

5.通過proxy.$refs.子組件ref名.子組件內屬性/方法 實現調用

<template>
  <!-- 父組件 -->
  <div>
    <!-- 子組件 -->
    <Child ref="child" />
    <button @click="changeChildren">子組件count+1</button>
  </div>
</template>
 
<script setup lang="ts" name="Father">
import { getCurrentInstance, ComponetInternalInstance,ref } from "vue";
import Child from "./zi.vue";
const child = ref(null)
 // as ComponetInternalInstance表示類型斷言,ts時使用。否則報錯,proxy為null
const { proxy } = getCurrentInstance() as ComponetInternalInstance;
function changeChildren() {
  proxy.$refs.child.count += 1;
  //也可以使用ref數據.value的形式調用:
  //child.value.count += 1
  console.log(child.value.name)
}
</script>
 
<style scoped></style>

main.js

import api from "./utils/api.js"
import StringUtil from "./utils/StringUtil.js"

app.config.globalProperties.api = api;
app.config.globalProperties.StringUtil = StringUtil;
import {getCurrentInstance } from 'vue';

const { proxy } = getCurrentInstance();

console.log(proxy.api);
console.log(proxy.StringUtil.isBlank('1'));

方式一、通過 getCurrentInstance 方法獲取當前組件實例,從而獲取 route 和 router

Html

<template>
  <div>

  </div>
</template>
<script>
import { defineComponent, getCurrentInstance } from 'vue'

export default defineComponent({
  name: 'About',
  setup(){
    const { proxy } = getCurrentInstance()
    console.log(proxy.$root.$route)
    console.log(proxy.$root.$router)
    return {}
  }
})
</script>

方式二:通過從路由中導入 useRoute useRouter 使用 route 和 router。

Html

import { defineComponent } from ‘vue'
import { useRoute, useRouter } from ‘vue-router'
export default defineComponent({
setup () {
const $route = useRoute()
const r o u t e r = u s e R o u t e r ( ) c o n s o l e . l o g ( router = useRouter() console.log(router=useRouter()console.log(route)
console.log($router)
}
})

附:Vue3中關于getCurrentInstance的大坑

開發中只適用于調試! 不要用于線上環境,否則會有問題!

解決方案:

方案1.

const instance = getCurrentInstance()
console.log(instance.appContext.config.globalProperties)

獲取掛載到全局中的方法

方案2.

const { proxy } = getCurrentInstance()

使用proxy線上也不會出現問題。

以上就是關于“vue3中的getCurrentInstance如何使用”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

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

AI

华池县| 康平县| 阜新| 太康县| 尚志市| 抚松县| 澎湖县| 灵宝市| 稷山县| 探索| 黎川县| 合川市| 吕梁市| 文成县| 安丘市| 航空| 温宿县| 衡水市| 翁牛特旗| 杭州市| 盘山县| 信丰县| 双辽市| 台北县| 嘉峪关市| 申扎县| 乃东县| 成武县| 苏尼特右旗| 商丘市| 交口县| 思茅市| 巴彦淖尔市| 遵化市| 信阳市| 天水市| 新乡县| 扶绥县| 大城县| 昌图县| 正镶白旗|