-- ChatLog.vue --><!-- propsで受け取ってtemplate内で表示 --><templatelang="html">{{ userId }}</template>exportdefault{props:["userId"]} ※ v-bindを使う際の注意点 v-bindに指定する変数名はケバブケース v-bind:user-id propsで受け取る際はキャメルケース props["userId"] で表...