Home > Web Front-end > JS Tutorial > body text

Detailed explanation of the steps to globally introduce bass.scss into Vue

php中世界最好的语言
Release: 2018-05-08 14:48:42
Original
2180 people have browsed it

This time I will bring you a detailed explanation of the steps to globally introduce bass.scss into Vue. What are the precautions for Vue to globally introduce bass.scss. The following is a practical case, let’s take a look.

Installation

$ > cnpm i -D sass-resources-loader
Copy after login

Configuration

If configured, it is configured in the loader parser of vue, that is, in vue-cli The file built in the scaffolding mode is build/utils.js. The cssLoaders() method is defined in this file. This method defines the parsing methods of css and less, as follows.

// build/utils.js
exports.cssLoaders = function (options) {
 options = options || {}
 
 ...
 return {
  // ...
  sass: generateLoaders('sass', { indentedSyntax: true }),
  // 定义在这里 =======================》
  scss: generateLoaders('sass').concat(
   {
    loader: 'sass-resources-loader',
    options: {
     resources: path.resolve(dirname, '../src/common/style/global.scss') // 需要全局引入的文件
    }
   }
  ),
  // 定义在这里 =======================》
  // ...
 }
}
// global.scss
@mixin line-height($height) {
 height: $height;
 line-height: $height;
}
$head-height: .45rem;
// xx.vue
<style lang="scss">
 height: @include line-height(45px);
</style>
Copy after login

Recommendation

Only need to define variables or mixins in global.scss.

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

What are the methods in Angular to achieve letter case conversion

apply and Math.max() Usage and difference

The above is the detailed content of Detailed explanation of the steps to globally introduce bass.scss into Vue. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!