当前位置: 首页 > 工具软件 > node-rem > 使用案例 >

node_modules安装及node-sass使用

宋育
2023-12-01

node_modules安装及node-sass使用

终端进入项目文件夹运行以下命令
一、安装node_modules

1、输入npm init,一直回车

会生成package.json文件

2、npm i -D vue

然后就成功node_modules了

二、使用node-sass

1、创建css文件

2、创建index.scss文件,写入样式

3、运行node-sass -w ./css/index.scss ./css/index.css --output-style expanded

这样就ok了!!!

 类似资料: