Skip to content

Instantly share code, notes, and snippets.

View Vallabharayudu's full-sized avatar

Vallabha Rayudu Vallabharayudu

View GitHub Profile
<template>
<require from="styles.css"></require>
<require from="tree-view"></require>
<tree-view></tree-view>
</template>
<template>
<require from="styles.css"></require>
<div>
<div class="left">
<div>
<button class="btn btn-primary blueButton">New York Bridge</button>
</div>
<div>
<template>
<require from="./location-map"></require>
<div><h2>Play with variables from parent to child and vice versa</h2></div>
<location-map></location-map>
</template>
<template>
<require from="styles.css"></require>
<h1>${message}</h1>
<div class="container">
<ul>
<li repeat.for="item of list" class="${item.isActive?'red':''}" click.delegate="clickItem(item)">${item.name}</li>
</ul>
</div>