vue.js 验证2类型错误:找不到名称“默认属性”

rur96b6h  于 2023-01-31  发布在  Vue.js
关注(0)|答案(3)|浏览(150)

自从我更新了我的项目使用新的2.x版本的Vuetify(https://vuetifyjs.com),我得到了一些类型错误在编译期间,我不知道如何摆脱他们。
我检查了文档,并确保在我的tsconfig.json的types部分包含vuetify,如下所示:

{
  "compilerOptions": {
    ...

    "types": [
      "webpack-env",
      "jest",
      "vuetify",
      "axios"
      ],

     ...
  }
}

我在这里不做任何花哨事:

import Vue from 'vue';
import App from './App.vue';
import vuetify from './plugins/vuetify';
import router from './router';
import store from './store';

Vue.config.productionTip = false;

new Vue({
  vuetify,
  router,
  store,
  render: (h) => h(App),
}).$mount('#app');

然后运行dev服务器:yarn serve

ERROR in /Users/sebe/workspace/app/frontend/arena/src/main.ts
12:3 Argument of type '{ vuetify: Vuetify; router: VueRouter; store: Store<any>; render: (h: CreateEle
ment) => VNode; }' is not assignable to parameter of type 'ComponentOptions<Vue, DefaultData<Vue>, Def
aultMethods<Vue>, DefaultComputed, PropsDefinition<Record<string, any>>, Record<string, any>>'.
  Object literal may only specify known properties, and 'vuetify' does not exist in type 'ComponentOpt
ions<Vue, DefaultData<Vue>, DefaultMethods<Vue>, DefaultComputed, PropsDefinition<Record<string, any>>
, Record<string, any>>'.
     8 | 
     9 | new Vue({
  > 10 |   vuetify,
       |   ^
    11 |   router,
    12 |   store,
    13 |   render: (h) => h(App),

ERROR in /Users/sebe/workspace/app/node_modules/vuetify/types/index.d.ts
59:10 Cannot find name 'DefaultData'.
    57 |   export interface ComponentOptions<
    58 |     V extends Vue,
  > 59 |     Data=DefaultData<V>,
       |          ^
    60 |     Methods=DefaultMethods<V>,
    61 |     Computed=DefaultComputed,
    62 |     PropsDef=PropsDefinition<DefaultProps>,

对于默认属性、属性定义、默认计算、默认方法,第二个错误重复出现。
任何人的帮助都会很棒:)
更新:我刚刚注意到默认的vuetify打字模板也会出现同样的错误:

vue create newapp
vue add vuetify
yarn serve

我的./plugins/vuetify.ts看起来像这样:

import Vue from 'vue';
import Vuetify from 'vuetify/lib';
import colors from 'vuetify/lib/util/colors';
import { VuetifyPreset } from 'vuetify/types/presets';

Vue.use(Vuetify);

const opts: Partial<VuetifyPreset> = {
  theme: {
    dark: true,
    themes: {
      light: {
        primary: colors.green.base,
      },
      dark: {
        primary: colors.green.darken2,
      },
    },
  },
  icons: {
    iconfont: 'mdi',
  },
};

export default new Vuetify(opts);
n53p2ov0

n53p2ov01#

在Vuetify源代码中:

export default Vuetify
export interface Vuetify

模块和接口共享相同的名称Vuetify导致此问题。
当Typescript想要获得Vuetify的接口时,但总是Vuetify的模块。
要解决此问题:
import { Vuetify } from 'vuetify'
将此代码添加到主. ts文件中

xdyibdwo

xdyibdwo2#

我也遇到了同样的问题,事实证明,这是因为在我的道路上有一个象征性的链接:
/c/linkToDev/vueApp-始终失败
/d/devFolder/vueApp-始终有效

txu3uszq

txu3uszq3#

我遇到了同样的问题,当试图treeshake Vuetify和安装vuetify加载器WebPack插件
我的解决方案-添加第二行到main. ts:

import vuetify from '@/plugins/vuetify.js'; 
import Vuetify from 'vuetify';

类似于@shuixiya1999解决方案,这一个适合我此时此地
配置:

"vue": "2.6.14",
    "vuetify": "^2.6.7",
    "vuetify-loader": "^1.7.3",

相关问题