
エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Vue.jsでdt、ddタグをv-forループで作る - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Vue.jsでdt、ddタグをv-forループで作る - Qiita
<template> <dl v-for="item in items"> <dt>{{ item.name }}</dt> <dd>{{ item.description }}</dt> </... <template> <dl v-for="item in items"> <dt>{{ item.name }}</dt> <dd>{{ item.description }}</dt> </dl> </template> ↓ <dl> <dt>えるしつているか</dt> <dd>りんごしかたべない</dt> </dl> <dl> <dt>死神は</dt> <dd>手が赤い</dt> </dl> <template> <dl> <template v-for="item in items"> <dt>{{ item.name }}</dt> <dd>{{ item.description }}</dt> </template> </dl> </template> ↓ <dl> <dt>えるしつているか</dt> <dd>りんごしかたべない</dt> <dt>死神は</dt> <dd>手が