gpt4 book ai didi

javascript - 我可以在 JSFiddle 上使用 Polymer 吗?

转载 作者:数据小太阳 更新时间:2023-10-29 04:34:41 26 4
gpt4 key购买 nike

我想在 JSFiddle 或 JavaScript Bin 等沙箱中创建 Polymer 元素的快速原型(prototype),但我无法让它工作!

最佳答案

是的,你可以,感谢polygit .

这是一个您可以 fork 的样板示例: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'
});
});

关于javascript - 我可以在 JSFiddle 上使用 Polymer 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34074772/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com