vue开发异常记录

目录

          • 1、A later version of Node.js is already installed. Setup will now exit.已经安装了Node.js的新版本。安装程序现在将退出。
          • 2、 Component template should contain exactly one root element. If you are using v-if on multiple eleme组件模板应该只包含一个根元素。
          • 3、localhost与127.0.0.1的区别
            • 4、Errors: http://eslint.org/docs/rules/no-tabs
          • 5、禁止使用-符号
          • 6、防止事件冒泡vue中
          • 7、[Vue warn]: Error in v-on handler: "TypeError: Cannot read property '_isHighlight' of undefined"

1、A later version of Node.js is already installed. Setup will now exit.已经安装了Node.js的新版本。安装程序现在将退出。

找到node卸载exe程序执行下就行

2、 Component template should contain exactly one root element. If you are using v-if on multiple eleme组件模板应该只包含一个根元素。

在页面或组件模板标签中包一层div即可
vue开发异常记录_第1张图片

3、localhost与127.0.0.1的区别

在项目请求配置中如果用的是127.0.0.1的,项目访问又用的localhost访问,就会请求不到后台。
需要在host文件中,配置localhost映射即可

4、Errors: http://eslint.org/docs/rules/no-tabs

文件编码的代码,不符合eslint的语法校验规则.
建议卸载、或注释
卸载:npm uninstall eslint --save
vue开发异常记录_第2张图片

5、禁止使用-符号
6、防止事件冒泡vue中
 event.preventDefault();
7、[Vue warn]: Error in v-on handler: “TypeError: Cannot read property ‘_isHighlight’ of undefined”

初始化数据回显时,跟实际数量不一致,但不影响

你可能感兴趣的:(#,Vue)