1
Polymer 2.0コンポーネント(クラスベースの構文)のミックスインを以下のように作成しようとしています。クラスにオプションを渡す方法は、今のやり方と同じですか?クラスへの引数の受け渡し
ミックスインとポリマー要素の定義:
class PodcastListView extends PolymerApolloBehavior(Polymer.Element, myOptions) {
//some code
}
ミックスインクラス:
export const PolymerApolloBehavior = (superclass, options) => class extends superclass {
constructor() {
console.log(options);
}
}