举报投诉联系我们 手机版 热门标签 鳄鱼CMS
您的位置:鳄鱼CMS > vue this.$props Vue 3.0 在prop的默认函数中访问this

vue this.$props Vue 3.0 在prop的默认函数中访问this

2023-04-25 05:31 VUE3教程

vue this.$props Vue 3.0 在prop的默认函数中访问this

vue this.$props Vue 3.0 在prop的默认函数中访问this

vue this.$props

生成 prop 默认值的工厂函数不再能访问 this

替代方案:

  • 把组件接收到的原始 prop 作为参数传递给默认函数;
  • 注入 API 可以在默认函数中使用。

import { inject } from "vue"


export default {
  props: {
    theme: {
      default (props) {
        // `props` 是传递给组件的原始值。
        // 在任何类型/默认强制转换之前
        // 也可以使用 `inject` 来访问注入的 property
        return inject("theme", "default-theme")
      }
    }
  }
}
阅读全文
以上是鳄鱼CMS为你收集整理的vue this.$props Vue 3.0 在prop的默认函数中访问this全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 鳄鱼CMS eyucms.com 版权所有 联系我们