Now lets concatenate some strings
file: code/ShowTopic.vue 1: <template> 2: <div class="senph-topic"> 3: <AddComment :replyTo="topicUrl" :show="'true'"/> 4: <ul v-if="topic.comments.length > 0"> 5: <ShowComment 6: v-for="c in topic.comments" 7: :comment="c" 8: :topicUrl="topicUrl" 9: :key="c.ident" 10: /> 11: </ul> 12: <div v-else class="senph-no-comments"> 13: No comments yet. 14: </div> 15: </div> 16: </template>
strange attributes