0
Vueアプリケーション用のプラグインを作成しようとしています。私は次のコードを書いたとき、私はエラーを得た:'babel-runtime/core-js/object/define-properties'モジュールを解決できません。
export default function(Vue){
Vue.auth = Authentication;
Object.defineProperties(Vue.prototype, {
$auth: {
get() {return Vue.auth; }
}
});
}
を、エラーは次のとおりです。
ERROR in ./src/authentication.js Module not found: Error: Cannot resolve module 'babel-runtime/core-js/object/define-properties' in D:\Dropbox\www\Vue\src @ ./src/authentication.js 7:24-81
は、ここでの問題は何ですか?私はそれを解決することができませんでした。何か案が?