首頁 >web前端 >Vue.js >vue3中getCurrentInstance怎麼使用

vue3中getCurrentInstance怎麼使用

王林
王林轉載
2023-05-16 12:28:062632瀏覽

父元件中:

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 &#39;vue&#39;;

const { proxy } = getCurrentInstance();

console.log(proxy.api);
console.log(proxy.StringUtil.isBlank(&#39;1&#39;));

方式一、透過getCurrentInstance 方法取得目前元件實例,從而取得route 和router

Html

<template>
  <div>

  </div>
</template>
<script>
import { defineComponent, getCurrentInstance } from &#39;vue&#39;

export default defineComponent({
  name: &#39;About&#39;,
  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&#39;
import { useRoute, useRouter } from ‘vue-router&#39;
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怎麼使用的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:yisu.com。如有侵權,請聯絡admin@php.cn刪除