jamesjianpeng/vue-sunduan-UI

View on GitHub
doc/8.init.build.sass.md

Summary

Maintainability
Test Coverage
### 在项目中使用 sass

  ```
  // build/webpack.base.config.js

  {
    test: /\.scss$/,
    use: [
      'vue-style-loader',
      'css-loader',
      'sass-loader'
    ]
  }

  ```
  ```
  // *.vue

  <style lang="scss">

  </style>

  ```