2023-07-13 19:03:32 +02:00
|
|
|
draggable(tag='div' :list='journey_data.main' class='list-group bg-dark' handle='.handle')
|
2023-07-13 19:11:16 +02:00
|
|
|
div.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"')
|
2023-07-13 18:57:49 +02:00
|
|
|
div.text {{element.title}}
|
2023-06-25 23:10:03 +02:00
|
|
|
i.fa.fa-times.close.fright(style='top:2px;right:2px;position:absolute;' @click='rm_section(idx)')
|
|
|
|
|
|
|
|
div.list-group-item()
|
2023-07-13 18:57:49 +02:00
|
|
|
div.text Add Section
|
|
|
|
i.fa.fa-plus.add(style='top:12px;right:5px;position:absolute;' @click='add_section()')
|