我用vscode工具搭建了vue项目,helloword也实现了,但是我在App.vue文件里面使用代码:const vm = new Vue({ el: ".vueBox", data: { isChoose:false }, methods:{ imgScc:function () { this.isChoose = !this.isChoose } }会报Uncaught ReferenceError: Vue is not defined错误,这个vue对象为什么实例化不成功啊?main.js里面已经有import Vue from 'vue' 啊,请高手解答一下是什么原因?
绝地无双