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

How to solve the problem that stylus cannot be used in vue-cli

不言
Release: 2018-06-29 16:23:41
Original
2122 people have browsed it

This article mainly introduces the method to solve the problem that stylus cannot be used in vue-cli. It has certain reference value. Interested friends can refer to it

When writing vue based on vue-cli During the project, I encountered a small pitfall. I used stylus for css, but it always reported an error during compilation:

How to solve the problem that stylus cannot be used in vue-cli

After going back and forth dozens of times, I finally finally I've been tortured. . . The solution is as follows:

1. Write dependencies in the package.json file:

 "stylus-loader": "^2.5.0",
 "stylus": "0.52.4",
Copy after login

Then run cmpm on the command line i Install the plugin.

Or run directly:

$ cnpm i stylus-loader stylus --save
Copy after login

After that, it’s time to enjoy the joy of success:

Running

$ npm run dev
Copy after login

How to solve the problem that stylus cannot be used in vue-cli

Here’s to celebrating! It turns out that I only installed stylus-loader but not stylus, so the problem has not been solved. Now it is finally solved. ^_^

The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

About the method of Vue2 SSR caching Api data

How to solve the problem of updating state by vuex method in parent component The child component cannot be updated and rendered in time

The above is the detailed content of How to solve the problem that stylus cannot be used in vue-cli. 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!