这个是官网的例子为什么会报错vuenot defined我不知道这个是安装好自带的代码,为什么更改成官网的例子就不好用
1 回答
new_object_
TA贡献55条经验 获得超117个赞
你上边这一串自己的代码写在哪?
下图代码应该是组件文件.vue里面的,而你上边是主入口文件main.js里的,实例化vue之前你需要声明vue。
如果使用webpack打包引入的话就是在文件头写上
import Vue from 'vue';
注意:
需要使用npm安装vue作为依赖
npm install vue
2.引用的vue.js库需要更换为vue.esm.js否则进入浏览器会有如下报错
[Vue warn]: You are using the runtime-only build of Vue where the template option is not available. Either pre-compile the templates into render functions, or use the compiler-included build.
添加回答
举报
0/150
提交
取消