Files
pillar/src/scripts/js/es6/common/vuecomponents

Vue components

Vue.js is a javascript framework for writing interactive ui components. Vue.js is packed into tutti.js, and hence available site wide.

Absolute must read

Styling and animation of components

More advanced, but important topics

Rule of thumbs

// Good! 
<my-component
	:propA="propX"
	:propB="propY"
/>

// Bad! 
<my-component :propA="propX" :propB="propY"/>