Skip to content

Instantly share code, notes, and snippets.

@mlecoutre
Last active August 29, 2015 14:12
Show Gist options
  • Save mlecoutre/73ebf7b65823dd64fbcc to your computer and use it in GitHub Desktop.
Save mlecoutre/73ebf7b65823dd64fbcc to your computer and use it in GitHub Desktop.
designer
<link href="../polymer/polymer.html" rel="import">
<polymer-element name="name-tag">
<template>
<style>
</style>
<b>{{ owner }}</b>
</template>
<script>
Polymer({
owner: 'Daniel'
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment