web-dev-qa-db-ja.com

「プロパティがタイプ 'Vue'に存在しません」エラーを解決します

VuejsでTypeScriptを使用してアプリケーションを構築しています。 TypeScript(.ts)ファイルにインポートするスタンドアロンコンポーネント(.vue)ファイルがいくつかあります。 TypeScriptファイルでは、Vue npm Vueライブラリからインポートし、新しいVueを表示して、私が見ているエラーは次のとおりです。

プロパティxはタイプ 'Vue'に存在しません

私のビルドシステムは、TSCを使用したWebpackです。このエラーが発生する理由と解決方法を教えてください。

main.ts

import Vue from 'vue';
import Competency from '../components/competency.vue';

new Vue({
  el: "#app",
  components: {
    'competency': Competency
  },
  data:{
    count: 0
  },
  methods:{
    initialize: function(){
      this.count = count + 1; // Errors here with Property count does not exist on type vue
    }
  }
})

tsconfig

{
  "compilerOptions": {
    // "allowJs": true,
    "allowSyntheticDefaultImports": true,
    "experimentalDecorators": true,
    "lib": [
      "es2015",
      "dom",
      "es2015.promise"
    ],
    "module": "es2015",
    "moduleResolution": "node",
    "noEmitOnError": true,
    "noImplicitAny": false,
    //"outDir": "./build/",
    "removeComments": false,
    "sourceMap": true,
    "target": "es5"

  },
  "exclude": [
    "./node_modules",
    "wwwroot",
    "./Model"
  ],
  "include": [
    "./CCSEQ",
    "./WebResources"
  ]
}

webpack.config.js

const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');

module.exports = {
    entry: {
        Evaluations: './WebResources/js/main.ts'
    },
    devServer: {
        contentBase: './dist'
    },
    module: {
        rules: [{
                test: /\.ts$/,
                exclude: /node_modules|vue\/src/,
                loader: 'ts-loader',
                exclude: /node_modules/,
                options: {
                    appendTsSuffixTo: [/\.vue$/]
                }
            },
            {
                test: /\.vue$/,
                loader: 'vue-loader',
                options: {
                    esModule: true
                }
            },
            {
                test: /\.css$/,
                use: [
                    'style-loader',
                    'css-loader'
                ]
            },
            {
                test: /\.(png|svg|jpg|gif)$/,
                use: [
                    'file-loader'
                ]
            },
        ]
    },
    resolve: {
        extensions: [".tsx", ".ts", ".js"],
        alias: {
            'vue$': 'vue/dist/vue.esm.js'
        }
    },
    plugins: [
        new CleanWebpackPlugin(['dist']),
        new HtmlWebpackPlugin({
            filename: 'Evaluations.html',
            template: './WebResources/html/Evaluations.html'
        }), new HtmlWebpackPlugin({
            filename: 'ExpenseUpload.html',
            template: './WebResources/html/ExpenseUpload.html'
        }), new webpack.optimize.CommonsChunkPlugin({
            name: 'WebAPI'
        })
    ],
    output: {
        filename: '[name].bundle.js',
        path: path.resolve(__dirname, 'dist')
    }
}
13
Tim Hutchison

import * .vueファイルを宣言する必要があります。

といった:

vue-file-import.d.ts

declare module "*.vue" {
   import Vue from "vue";
   export default Vue;
}
3
may

私はこのページをたどろうとしました https://vuejs.org/v2/guide/routing.html と同じTypeScriptエラーが発生していました。Vueインスタンスは次のように入力します

    new Vue({
        el: '#app',
        data: {
            currentRoute: window.location.pathname
        },
        computed: {
            ViewComponent() {
                return routes[(this as any).currentRoute] || routes['/']
            }
        },
        render (h) { return h((this as any).ViewComponent) }
    })
3
reggaeguitar

vue 2.8.2とTypeScript 2.5.3で同じエラーが発生しました。変数にVueインスタンスを保持してから型を与えることで修正。これにより、optionsオブジェクトを使用してインスタンス化したときに、TSがすべてのVueプロパティを認識するようになります。

var VueApp: any = Vue;

var App = new VueApp({
  el: "#app",
  data() {
     return {
        count: 0
     }
  },
  methods:{
    initialize() {
      this.count = count + 1; // Should work now
    }
  }
})
1
ArniqueMK

同様の問題が発生しました(特に.vueファイル)。しかし、これで問題は解決したようです。 .vueファイルをインポートする場所はどこでも、ES6スタイルの「import」を「require」に変更してください。

したがって、あなたの例では、変更します:

import Competency from '../components/competency.vue';

に...

declare var require: any;
var Competency = require("../components/competency.vue").default;
0
PuncrOc