2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Nuxt.jsでSass記述ができるようにする方法

Last updated at Posted at 2019-12-31

Nuxt.jsでSass記述ができるようにする方法

ターミナルで下記コマンドを実行します。

npm install --save-dev node-sass sass-loader

pugなどまとめてインストールしたい場合は下記で実行できます。

npm install --save-dev pug@2.0.3 pug-plain-loader coffeescript coffee-loader node-sass sass-loader

package.jsonを見ることでインストールされていることが確認できます。
vue sass.PNG

これでNuxt.jsでもSass記述ができるようになります。

・SASS記法の場合

index.vue
<style lang="sass" scoped>
  .done
       font-size: 20px
       background: blue
</style>

・SCSS記法の場合

index.vue
<style lang="scss" scoped>
div {
    margin: 0 auto;
    p {
        padding: 10px;
        span {
             color: aqua;
        }
    }
}
</style>

scopedを記述することにより、そのファイル内だけにcssを適用することができます。

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?