Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 543 Bytes

todo.md

File metadata and controls

29 lines (23 loc) · 543 Bytes
  1. Remove update timer on compoent destroy - done
  2. Fix if if together issue - done
<div :if(dd)></div>
<div :if(ff)></div>
  1. Allow tag without end .eg. -
    - done
  2. Add if component -
<if :cond(name)>
</if>
<else-if>
</else-if>
  1. Allow comment inside comment

  2. Allow in-place inside for loop

  3. Allow if on root element

  4. Fix reactivity issue when using not symbol

<BulmaButton :if(!isSeen) class="button" @click="markAsSeen" :isLoading="isMarking" :disabled="isMarking">
		Mark as Seen
	</BulmaButton>