亚洲精品亚洲人成在线观看麻豆,在线欧美视频一区,亚洲国产精品一区二区动图,色综合久久丁香婷婷

              當(dāng)前位置:首頁 > IT技術(shù) > 其他 > 正文

              Vue3中如何使用this
              2022-09-06 22:51:21

              vue3提供了getCurrentInstance ,通過這個屬性,直接使用ctx是錯誤的,需要找到全局屬性globalProperties

              import { getCurrentInstance } from 'vue'
              const instance = getCurrentInstance()
              const _this= instance.appContext.config.globalProperties
              

              這里的_this就相當(dāng)于vue2里的this

              方案2:

              const { proxy } = getCurrentInstance()
              

              使用proxy線上也不會出現(xiàn)問題

              本文摘自 :https://www.cnblogs.com/

              開通會員,享受整站包年服務(wù)立即開通 >