1
我想保留我的聚合物組件很好地封裝,但現在如果我嘗試將任何外部模塊導入到組件中,我會得到一個未定義的「導入」錯誤。是否可以將模塊導入聚合物組件?
我使用Webpack捆綁我的應用程序,但這隻打包了我的JavaScript文件。
有沒有辦法讓我的聚合物組件封裝到一個單一的HTML文件或我必須分開的JS部分,當涉及到進口?
例子:
<link rel="import" href="../bower_components/polymer/polymer.html">
<dom-module id="my-new-view">
<template>
<style>
</style>
<h1>New view</h1>
</template>
<script>
import { myConstant } from '../module.js'; //<---- this throws error for the import'
Polymer({
is: 'my-new-view'
});
</script>
</dom-module>