learn 1

安装

  1. wondows powerShell (管理员)

    npm i -g vue-cli: 安装脚手架,永久性的。

  2. 安装模板
    vue init webpack 项目名

  3. 进入项目
    cd 项目名

  4. 安装依赖
    npm install

cnpm install sass-loader node-sass webpack --save-dev

  1. 浏览器访问
    localhost:8080

自定义项目

  1. 修改项目结构,新建pages文件夹

  2. 安装sass预编译器

npm install -g cnpm --registry = https://registry.npm.taobao.org
淘宝镜像

cnpm i node-sass

  1. 配置路由router.js

你可能感兴趣的:(learn 1)