Solve the problem of using less in Vue

Solve the problem of using less in Vue

1. Install less dependency: npm install less less-loader --save

2. Modify the webpack.base.config.js file, configure the loader to load dependencies, make it support external less, and add to the original code

// This method displays the style tag style in the console { 
    test: /\.less$/,

    loader: "style-loader!css-loader!less-loader",
 
   options: { sourceMap: true } //You can see in the console which less file the current tag style comes from} 

3. Use in the project

Add lang="less" to the style tag in the vue file to use less in the tag, or import less externally

Problems encountered:

Cause: The installed version of less-loader is too high. Solution:

1.npm uninstall less-loader 2.npm install [email protected]

Or just modify the version number in the package.json file and then npm install

This is the end of this article about the use of less in vue. For more relevant content on the use of vue less, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Solve the problem of using less/sass in Vue and encountering invalid problems during use
  • vue-cli4 uses variables in the global less file to configure operations
  • Vue uses less styles globally, and components use variables defined in the global style file
  • Detailed tutorial on installing and using less in vue cli
  • A detailed tutorial on using less in Vue
  • Example of using vue + less to implement simple skinning function
  • Detailed explanation of referencing jQuery, bootstrap and using sass and less to write CSS in vue-cli

<<:  About the IE label LI text wrapping problem

>>:  Complete steps for deploying confluence with docker

Recommend

Markup Languages ​​- What to learn after learning HTML?

Click here to return to the 123WORDPRESS.COM HTML ...

Related commands to completely uninstall nginx under ubuntu16.04

nginx Overview nginx is a free, open source, high...

Detailed installation and use of SSH in Ubuntu environment

SSH stands for Secure Shell, which is a secure tr...

JavaScript clicks the button to generate a 4-digit random verification code

This article example shares the specific code of ...

How to use Maxwell to synchronize MySQL data in real time

Table of contents About Maxwell Configuration and...

The connection between JavaScript constructors and prototypes

Table of contents 1. Constructors and prototypes ...

Examples of 4 methods for inserting large amounts of data in MySQL

Preface This article mainly introduces 4 methods ...

Use nginx + secondary domain name + https support

Step 1: Add a secondary domain name to the Alibab...

CSS3 border effects

What is CSS# CSS (abbreviation of Cascading Style...

Detailed tutorial on installing mysql 8.0.20 on CentOS7.8

1. Install MySQL software Download and install My...

Record the whole process of MySQL master-slave configuration based on Linux

mysql master-slave configuration 1. Preparation H...

A brief discussion on the application of Html web page table structured markup

Before talking about the structural markup of web...

Introduction to the use of alt and title attributes of HTML img tags

When browser vendors bend the standards and take i...