ul.line-container
li.line-item(v-for='item in items')
.item-tag
slot(name='tag' :item='item')
| {{item.tag}}
.item-symbol
slot(name='symbol' :item='item')
.item-circle(
v-if='!item.type || item.type==="circle"'
:class='getColorClass(item.color)'
:style='getStyle(item)'
)
star.item-star(
v-if='item.type==="star"'
:class='getColorClass(item.color)'
:path-style='getStyle(item)'
)
slot(name='content' :item='item')
.item-content(v-if='!item.htmlMode' :class='item.type')
| {{item.content}}
.item-content.html-mode(v-else :class='item.type' v-html='item.content')