码迷,mamicode.com
首页 > 其他好文 > 详细

polymer-developer guide-feature overview

时间:2015-07-18 00:18:43      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

<dom-module id=‘proto-element‘>
  <template>
    
    <div>{{greeting}}</div>
  </template>
</dom-module>
<script>
  //元素注册
  Polymer({
    is:‘proto-element‘,
    //给元素的原型加属性和方法
    properties:{
      //为元素的公开API声明属性
      greeting:{
        type:String,
        value:‘sfp‘
      }
    }
  })
</script>

//使用polymer的过程 注册和生命周期 属性声明 局部dom 事件 数据绑定 行为 公共函数 实现性特征和元素

  

polymer-developer guide-feature overview

标签:

原文地址:http://www.cnblogs.com/wang-jing/p/4655832.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!