[Polymer] Introduction

本文介绍如何通过安装Polymer并利用Bower组件管理工具来创建第一个自定义Web组件。示例中详细展示了如何设置HTML文件以引入必要的Polymer库,并通过具体的`hello-world.html`实例讲解了自定义元素的定义和使用方法。

install Polymer and explore creating our first custom element:

 bower install polymer

 

index.html:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Polymer</title>
    <script src="bower_components/webcomponentsjs/webcomponents-lite.js"></script>
    <link rel="import" href="bower_components/polymer/polymer.html">
    <link rel="import" href="./hello-world.html">
</head>
<body>
<hello-world name="ZTW"></hello-world>
</body>
</html>
  • include webcomponents-list.js file
  • import polymer.html file
  • import our compoment hello-world.html file

 

hello-world.html:

<dom-module id="hello-world">
    <template>
        <input type="text" value="{{name::keyup}}"> <!-- {{}} two way data binding, ::bind to event -->
        <h1>Hello, [[name]]</h1> <!-- [[]] one way data binding -->
    </template>
    <script>
        Polymer({
            is: "hello-world"  // string match the tag
        })
    </script>
</dom-module>

 

转载于:https://www.cnblogs.com/Answer1215/p/5065447.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值