Skip to content

Latest commit

 

History

History
66 lines (47 loc) · 827 Bytes

Snippets.md

File metadata and controls

66 lines (47 loc) · 827 Bytes

Snippets

Snippets are found below.

→ Denotes the TAB key.

Snippet→ Output
nfor→ Nue For Loop
nif→ Nue If Statement
nscript→ Nue Script with all lifecycle methods
nattr→ Rendering attributes with :attr
ncomp→ Nue Component

nfor

:for="(item, index) in array"

nif

<div :if="condition"></div>
<div :else-if="condition"></div>
<div :else></div>

nscript

<script>
  constructor(data) {

  }
  mounted() {

  }
  updated() {

  }
  unmounted() {

  }
</script>

nattr

<div :attr="data">
  <script>
    data = {

    }
  </script>
</div>

ncomp

<div @name="comp">

</div>