vueコンポーネントでstylusを使いたいのですが、スタイルが認識されていないのか、コンポーネントのスタイルが変わりません。
コンパイルにはwebpackを使用しています。
webpack.config.jsの設定に不備があるのか、ローダーが足りないのか分からず質問させていただきました。
コンポーネントのstyleタグでstylusを使うには設定し忘れがあるのでしょうか?
状況
- vueのコンポーネントのstyleタグで、langをstylusに設定してビルドする。
- ビルド自体は成功するが、設定したスタイルが反映されない。
- stylusファイルをコンパイルする場合は正しくcssファイルにコンパイルできる。
ライブラリのバージョン
ライブラリ名 | バージョン |
---|---|
webpack | ^4.44.1 |
stylus | ^0.54.8 |
stylus-loader | ^3.0.2 |
css-loader | ^4.2.1 |
ソース
package.js
stylusを処理するために必要な下記のライブラリはインストール済みです。
- stylus
- stylus-loader
- css-loader
json
1{ 2 "name": "vuestylussample", 3 "version": "1.0.0", 4 "description": "My webpack project", 5 "main": "index.js", 6 "scripts": { 7 "test": "echo \"Error: no test specified\" && exit 1", 8 "build": "node_modules/webpack/bin/webpack.js --mode=development", 9 "start": "webpack-dev-server" 10 }, 11 "author": "", 12 "license": "ISC", 13 "dependencies": { 14 "@webpack-cli/init": "^0.2.2" 15 }, 16 "devDependencies": { 17 "babel-plugin-syntax-dynamic-import": "^6.18.0", 18 "css-loader": "^4.2.1", 19 "html-webpack-plugin": "^4.3.0", 20 "mini-css-extract-plugin": "^0.9.0", 21 "pug": "^3.0.0", 22 "pug-plain-loader": "^1.0.0", 23 "stylus": "^0.54.8", 24 "stylus-loader": "^3.0.2", 25 "terser-webpack-plugin": "^4.0.0", 26 "vue": "^2.6.11", 27 "vue-loader": "^15.9.3", 28 "vue-template-compiler": "^2.6.11", 29 "vue-template-loader": "^1.1.0", 30 "webpack": "^4.44.1", 31 "webpack-cli": "^3.3.12", 32 "webpack-dev-server": "^3.11.0", 33 "workbox-webpack-plugin": "^5.1.3" 34 } 35} 36
webpack.config.js
vue
1const path = require('path'); 2const { HtmlWebpackPlugin } = require('html-webpack-plugin'); 3 4const { VueLoaderPlugin } = require('vue-loader'); 5 6module.exports = { 7 entry: { 8 'index': [ 9 path.resolve(__dirname, 'src/js/index.js') 10 ], 11 }, 12 output: { 13 filename: '[name].js', 14 path: path.resolve(__dirname, 'dist'), 15 publicPath: "/" 16 }, 17 module: { 18 rules: [ 19 { 20 test: /.vue$/, 21 loader: 'vue-loader' 22 }, 23 { 24 test: /.styl(us)?$/, 25 oneOf: [ 26 { 27 resourceQuery: /^?vue/, 28 use: [ 29 'vue-style-loader', 30 'css-loader', 31 'stylus-loader' 32 ] 33 }, 34 { 35 use: [ 36 'css-loader', 37 'stylus-loader' 38 ] 39 } 40 ], 41 }, 42 ] 43 }, 44 devServer: { 45 contentBase: path.join(__dirname, 'dist'), 46 compress: true, 47 openPage: 'index.html', 48 watchContentBase: true, 49 inline: true, 50 port: 8080, 51 historyApiFallback: true, 52 noInfo: true, 53 }, 54 resolve: { 55 extensions: ['.js', '.json','.vue'], 56 alias: { 57 'vue$': 'vue/dist/vue.esm.js', 58 } 59 }, 60}; 61
コンポーネントを呼び出す元のファイル
コンポーネントを呼び出しているだけです。
js
1import Vue from 'vue'; 2import HelloComponent from './components/Hello'; 3 4new Vue({ 5 el: '#app', 6 components: { 7 HelloComponent 8 } 9}); 10
コンポーネント
vue
1<template> 2 <div> 3 <p class="foo">こんにちは</p> 4 </div> 5</template> 6 7<script> 8import Vue from 'vue'; 9export default Vue.extend({ 10 name: 'hello-component' 11}) 12</script> 13 14<style lang="stylus"> 15.foo 16 color red 17</style> 18
試した事
styleのlangをscssに変える
ローダーをscssに変えた所、スタイルが反映されました。
styleタグ自体は機能しているはずなのですが、stylusに変えると機能しません。
vue
1//... 2<style lang="scss"> 3.foo { 4 color red 5} 6</style>
あなたの回答
tips
プレビュー