1.报错:
Module build failed: Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (72)
For more information on which environments are supported please see:
https://blog.csdn.net/liyanhui1001/article/details/84379226
在当前项目下面执行
cnpm i node-sass -D
2.报提示信息:
Cannot find module 'eslint-plugin-vue' 报错解决
全局安装eslint-plugin-vue
这个包
npm i -g eslint-plugin-vue
还一直报错报错,气死我了
直接在配置中关掉了,
npm install eslint # 安装到命令行目前所在目录下
npm install -g eslint # -g 是指安装到全局目录,可以通过 npm config set prefix 来设置"目录路径" 的意思是将模块安装到全局,具体安装到磁盘哪个位置,要看 npm config prefix 的位置。
npm install -save eslint # -save 是指将包安装到当前项目的node_modules文件夹下下,并在package文件的dependencies节点写入依赖。
npm install -save-dev eslint # -save-dev 是指将包安装在当前项目的node_modules文件夹下,并将安装包信息写入package.json文件的devDependencies字段中
cnpm install -g node-sass
vue模板
<template>
<!-- 视图部分 -->
</template>
<script>
<!-- 编写页面静态部分,即model及vm部分 -->
export default {
name: "test.vue"
}
</script>
<style scoped>
<!-- 编写样式,不是必须 -->
</style>