vue.jsを使ってフロントを構築しています。
下記のところのスタイルだけ丸く変更したいのですがclass="detail_title"やclass="detail_content"は違うところでも多用されておりスタイルを変更することはできません。
下記のスタイルだけ変更したい場合はどう書けばいいのでしょうか?
知識ある方ご教授ください。よろしくお願いいたします
<div v-if="user.interests.length > 0" class="detail_content"> <p v-for="interest user.interests">・{{ interest.name }}</p> </div> <p v-else class="detail_content"> 空欄です </p> </div>
<div class="detail"> <p class="detail_title">興味</p> <div v-if="user.interests.length > 0" class="detail_content"> <p v-for="interest user.interests">・{{ interest.name }}</p> </div> <p v-else class="detail_content"> 空欄です </p> </div> ============================ scss <style lang="scss" scoped> .detail{ padding: 8px 0px; margin: 0 24px; &_title { font-style: normal; font-weight: 600; font-size: 10px; color: red; margin-bottom: 8px; } &_content { background: #f0f2f5; border-radius: 4px; padding: 8px; font-style: normal; font-size: 15px; color: #4d4452; } }
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/14 14:05
2020/04/14 14:08
2020/04/14 14:20
2020/04/14 14:22
2020/04/14 14:23
2020/04/14 14:25
2020/04/14 14:30
2020/04/14 14:33
2020/04/14 14:33
2020/04/14 14:38
2020/04/14 14:40
2020/04/14 14:42
2020/04/14 14:42
2020/04/14 14:44 編集
2020/04/14 14:45
2020/04/14 14:49
2020/04/14 14:50
2020/04/14 14:52
2020/04/14 14:53