如何在 polymer 2.x 中使用第三方 javascript 插件
How to use third party javascript plugin in polymer 2.x
大家好,我在 Polymer 上使用 javascript 插件时遇到了问题。我如何在我的项目中包含和使用 javascript 插件。
@JavaScript("js/main.js")
这是我的 java class 使用 java 脚本注释。但是它不起作用。
这是我的 html
<link rel="import" href="../../bower_components/polymer/polymer-element.html">
<dom-module id="main-page">
<template>
<style>
</style>
</template>
<script>
class MainPage extends Polymer.Element {
static get is() {
return 'main-page'
}
}
customElements.define(MainPage.is, MainPage);
</script>
</dom-module>
有什么建议吗?
我怀疑JS文件不在注释指定的目录中。
这是一个项目结构示例,展示了 @JavaScript
当你运行那个例子时,你应该在浏览器中看到以下内容。
您可以在此处找到示例项目:https://github.com/oluwasayo/demo-flow-js
大家好,我在 Polymer 上使用 javascript 插件时遇到了问题。我如何在我的项目中包含和使用 javascript 插件。
@JavaScript("js/main.js")
这是我的 java class 使用 java 脚本注释。但是它不起作用。
这是我的 html
<link rel="import" href="../../bower_components/polymer/polymer-element.html">
<dom-module id="main-page">
<template>
<style>
</style>
</template>
<script>
class MainPage extends Polymer.Element {
static get is() {
return 'main-page'
}
}
customElements.define(MainPage.is, MainPage);
</script>
</dom-module>
有什么建议吗?
我怀疑JS文件不在注释指定的目录中。
这是一个项目结构示例,展示了 @JavaScript
当你运行那个例子时,你应该在浏览器中看到以下内容。
您可以在此处找到示例项目:https://github.com/oluwasayo/demo-flow-js