vue
1<template> 2 <v-btn height="3.5em" class="contentButton"> 3 <iconComment class="icon" /> 4 <span class="button-string">コメント</span> 5 </v-btn> 6</template> 7 8<script> 9import iconComment from '@/assets/svgs/icon_comment.svg' 10export default { 11 name: 'CommentButton', 12 components: { 13 iconComment 14 } 15} 16</script> 17 18<style scoped> 19.contentButton { 20 display: flex; 21 padding: 10px; 22 width: 100%; 23 font-family: 'Noto Sans', sans-serif; 24 align-items: center; 25 justify-content: center; 26 font-weight: bold; 27 background: #fff; 28 border: 1px solid #bdc3c7; 29 box-sizing: border-box; 30 box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); 31 border-radius: 4px; 32} 33.icon { 34 margin-right: 5%; 35} 36.button-string { 37 width: 5em; 38 font-size: 17px; 39 text-align: center; 40} 41</style>
上記のコードでVue designerを起動したところ、真っ白なままプレビューが表示されないです。何が原因なのでしょうか。
Vueの環境構築は完了しています
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/23 06:28