编译失败,出现2个错误找不到此相对模块

时间:2019-10-22 13:22:53

标签: javascript vue.js npm

我正在关注有关vuejs的教程,并且在使用此命令npm run serve时遇到了问题:

这是main.js:

import Vue from 'vue';
import App from './App.vue';

new vue({
    render: (h) => h(App)
}).$mount('#app');

这是App.vue

<template>
<h3 class="text-danger text-center mt3">{{name}}</h3>
</template>
<script>
export default {
    name: 'App',
    data(){
        return{
            name:'Gestion de dépenses'
        }
    }
}
</script>
<style  scoped>

</style>

这是消息错误:

  

编译失败,出现2个错误
  找不到此相对模块:

     

我不知道问题出在哪里。

0 个答案:

没有答案