我想在 JSFiddle 或 JavaScript Bin 这样的沙箱中创建 Polymer 元素的快速原型,但我无法让它工作!
问问题
1782 次
1 回答
10
是的,你可以,多亏了polygit。
这是您可以分叉的样板示例:https ://jsfiddle.net/kaycebasques/2q3fqehz/
HTML:
<base href="https://polygit.org/components/">
<script src="webcomponentsjs/webcomponents-lite.min.js"></script>
<link href="polymer/polymer.html" rel="import">
<dom-module id="x-example">
<template>
<style>
:host {
display: block;
}
</style>
<h1>polyfiddle</h1>
</template>
</dom-module>
<x-example></x-example>
JS:
// only need this when in the main document and on non-Chrome
addEventListener('WebComponentsReady', function() {
Polymer({
is: 'x-example'
});
});
于 2015-12-03T19:45:04.313 回答