gpt4 book ai didi

typescript 将属性添加到 Vue 库定义

转载 作者:搜寻专家 更新时间:2023-10-30 21:19:36 26 4
gpt4 key购买 nike

我使用包含类型的 vue。但是我想使用某些插件添加的一些属性。

例如

Vue.$ga
Vue.$router

Typescript 提示 Vue 没有这些属性。我能否以某种方式将它们全局添加到 Vue 定义中?

最佳答案

是的,你可以:

import Vue from 'vue'

declare module 'vue/types/vue' {
interface VueConstructor {
$ga: any; // define real typings here if you want
$router: any;
}
}

您可以找到更多特定于 Vue 的信息 here

关于 typescript 将属性添加到 Vue 库定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48076772/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com