//Template <tr> <th v-for="title in titles">{{title.name}}</th> </tr> /*data vue-property-decoratorを使用しているため下記のような形になります*/ titles : any = [ { width:"80%", name:"a", }, { width:"10%", name:"b", }, { width:"10%", name:"c", }, ]
現在上記でnameは問題なくでているのですが、
これに対して、thにwidthの値をstyle="width:80%"などといれたいのですが、
うまくいきません。。
試したコード
<th v-for="title in titles" :style="'height:'+title.width">{{title.name}}</th>
特にエラーはないのですが、実際のhtmlには何も反映されませんでした。。
どのようにしたらstyle属性値に反映可能でしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/14 06:52
2020/02/14 08:03 編集