NuxtでコンポーネントにCSSを適用させたいと思いサンプルを作成したのですが、
指定したCSSで全く文字の色が変更されません。
Vuetifyを使用していたので、cssはあまり触れることが無かったので、
四苦八苦しております。
サンプルっコードは下記です。
どなたかご教示いただけませんでしょうか?
Nuxt
1<template> 2 <div> 3 <h4 :class="$style.title">scssのテスト</h4> 4 </div> 5</template> 6<script lang="ts"> 7import {Component, Vue} from 'nuxt-property-decorator' 8 9@Component({}) 10export default class extends Vue{ 11 12} 13</script> 14<style lang="scss" module> 15.title{ 16 border: green; 17 border-radius: 5px; 18 padding: 3px; 19} 20 21</style>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/23 01:51