OTM/template/module/journey_sec.pug

21 lines
596 B
Plaintext
Raw Normal View History

2023-07-19 13:59:52 +02:00
draggable.list-group.bg-dark(
tag="div",
:list="journey_data.main",
handle=".handle"
)
.list-group-item.handle(
v-for="(element, idx) in journey_data.main",
:key="idx",
@click="sel_section(idx)",
:class="journey_step_data.section == idx ? 'bg-primary' : 'bg-white'"
)
.text {{ element.title }}
i.fa.fa-times.close.fright(
style="top: 2px; right: 2px; position: absolute",
@click="rm_section(idx)"
)
2023-06-25 23:10:03 +02:00
2023-07-19 13:59:52 +02:00
.list-group-item.bg-white(@click="add_section()")
.text Add Section
i.fa.fa-plus.add(style="top: 12px; right: 5px; position: absolute")